-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
56 lines (45 loc) · 1.13 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# @generated SignedSource<<02246f35c864eedd376711e798741df7>>
# <BREAKING-CHANGES-LOG>
# </BREAKING-CHANGES-LOG>
schema {
query: RootQuery
mutation: RootMutation
}
"""My account details"""
type Account {
firstName: String
"""
The globally unique ID of an object. You can unmask this ID to get original value but please note that this unmasked ID is not globally unique anymore and therefore it cannot be used as a cache key.
"""
id(opaque: Boolean = true): ID!
lastName: String
name: String
telephone: String
}
"""Interface to describe an error"""
interface Error {
message: String
}
"""Root Mutation"""
type RootMutation {
updateAccount(account: UpdateAccount!): UpdateAccountOrError
}
"""Root Query"""
type RootQuery {
account: Account
}
"""Input type for updating an account"""
input UpdateAccount {
firstName: String
lastName: String
telephone: String
}
"""Response type indicating an error"""
type UpdateAccountError implements Error {
message: String
}
union UpdateAccountOrError = UpdateAccountError | UpdateAccountResponse
"""The update account response"""
type UpdateAccountResponse {
account: Account
}