-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathschema.graphql
159 lines (128 loc) · 3.24 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# source: http://localhost:3010/graphql
# timestamp: Sat Nov 12 2022 12:05:52 GMT+0100 (Central European Standard Time)
"""Exposes a URL that specifies the behavior of this scalar."""
directive @specifiedBy(
"""The URL that specifies the behavior of this scalar."""
url: String!
) on SCALAR
type Author {
"""Globally unique ID of the author"""
id: ID!
"""Database ID of the author"""
_id: ID!
"""Author's first name"""
firstName: String!
"""Author's last name"""
lastName: String!
quotes(
"""Limits the number of results returned in the page. Defaults to 10."""
first: Int = 10
"""
The cursor value of an item returned in previous page. An alternative to in integer offset.
"""
after: String = "Y3Vyc29yMA=="
query: String
): QuoteConnection
createdAt: String!
}
type AuthorConnection {
"""Identifies the total count of items in the connection."""
totalCount: Int!
"""A list of edges."""
edges: [AuthorEdge]
pageInfo: PageInfo!
}
"""List of edges."""
type AuthorEdge {
"""The item at the end of the edge."""
node: Author
"""A cursor for pagination."""
cursor: String
}
input AuthorsOrder {
field: AuthorsOrderField!
direction: Direction!
}
enum AuthorsOrderField {
ID
FIRST_NAME
LAST_NAME
CREATED_AT
}
input deleteAuthorInput {
id: Int!
}
"""The ordering direction."""
enum Direction {
"""Specifies an ascending order for a given orderBy argument."""
ASC
"""Specifies a descending order for a given orderBy argument."""
DESC
}
type Mutation {
createAuthor(input: NewAuthor!): Author
deleteAuthor(input: deleteAuthorInput!): Author
}
input NewAuthor {
firstName: String!
lastName: String!
}
"""Information about pagination in a connection."""
type PageInfo {
"""The item at the end of the edge."""
endCursor: String
"""When paginating forwards, are there more items?"""
hasNextPage: Boolean
"""When paginating backwards, are there more items?"""
hasPreviousPage: Boolean
"""When paginating backwards, the cursor to continue."""
startCursor: String
}
type Query {
author(id: ID!): Author
authors(
"""Limits the number of results returned in the page. Defaults to 10."""
first: Int = 10
"""
The cursor value of an item returned in previous page. An alternative to in integer offset.
"""
after: String = "Y3Vyc29yMA=="
firstName: String
lastName: String
orderBy: [AuthorsOrder]
): AuthorConnection
quote(id: ID!): Quote
quotes(
"""Limits the number of results returned in the page. Defaults to 10."""
first: Int = 10
"""
The cursor value of an item returned in previous page. An alternative to in integer offset.
"""
after: String = "Y3Vyc29yMA=="
query: String
): QuoteConnection
}
type Quote {
"""Globally unique ID of the quote"""
id: ID!
"""Database ID of the quote"""
_id: ID!
text: String!
"""Author of the quote"""
author: Author
createdAt: String!
}
type QuoteConnection {
"""Identifies the total count of items in the connection."""
totalCount: Int!
"""A list of edges."""
edges: [QuoteEdge]
pageInfo: PageInfo!
}
"""List of edges."""
type QuoteEdge {
"""The item at the end of the edge."""
node: Quote
"""A cursor for pagination."""
cursor: String
}