We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a623da commit abab757Copy full SHA for abab757
__tests__/schema.graphql
@@ -0,0 +1,35 @@
1
+type Query {
2
+ allThings(includingArchived: Boolean, first: Int!): ThingConnection*
3
+}
4
+
5
+type ThingConnection {
6
+ pageInfo: PageInfo!
7
+ nodes: [Thing*]*
8
9
10
+type PageInfo {
11
+ startCursor: String*
12
+ endCursor: String*
13
+ hasNextPage: Boolean*
14
+ hasPreviousPage: Boolean*
15
16
17
+interface Thing {
18
+ id: ID!
19
+ name: String*
20
+ description: String
21
22
23
+type Book implements Thing {
24
25
26
27
+ pages: Int*
28
29
30
+type Car implements Thing {
31
32
33
34
+ mileage: Float*
35
0 commit comments