@@ -42,7 +42,7 @@ type BackwardCompoundsConnection {
42
42
" " "
43
43
A list of edges which contains the \` BackwardCompound\` and cursor to aid in pagination.
44
44
" " "
45
- edges: [BackwardCompoundsEdge! ]!
45
+ edges: [BackwardCompoundsEdge]!
46
46
47
47
" " " A list of \` BackwardCompound\` objects." " "
48
48
nodes : [BackwardCompound ]!
@@ -99,7 +99,7 @@ type BackwardsConnection {
99
99
" " "
100
100
A list of edges which contains the \` Backward\` and cursor to aid in pagination.
101
101
" " "
102
- edges: [BackwardsEdge! ]!
102
+ edges: [BackwardsEdge]!
103
103
104
104
" " " A list of \` Backward\` objects." " "
105
105
nodes : [Backward ]!
@@ -140,6 +140,8 @@ enum BackwardsOrderBy {
140
140
}
141
141
142
142
type Child implements Node {
143
+ " " " Reads a single \` Foo\` that is related to this \` Child\` ." " "
144
+ fooByFooId : Foo
143
145
fooId : Int
144
146
id : Int !
145
147
name : String !
@@ -163,7 +165,7 @@ type ChildrenConnection {
163
165
" " "
164
166
A list of edges which contains the \` Child\` and cursor to aid in pagination.
165
167
" " "
166
- edges: [ChildrenEdge! ]!
168
+ edges: [ChildrenEdge]!
167
169
168
170
" " " A list of \` Child\` objects." " "
169
171
nodes : [Child ]!
@@ -186,6 +188,14 @@ type ChildrenEdge {
186
188
187
189
"""Methods to use when ordering \` Child\` ."""
188
190
enum ChildrenOrderBy {
191
+ FOO_BY_FOO_ID__BACKWARD_COMPOUND_1_ASC
192
+ FOO_BY_FOO_ID__BACKWARD_COMPOUND_1_DESC
193
+ FOO_BY_FOO_ID__FORWARD_COMPOUND_1_ASC
194
+ FOO_BY_FOO_ID__FORWARD_COMPOUND_1_DESC
195
+ FOO_BY_FOO_ID__FORWARD_ID_ASC
196
+ FOO_BY_FOO_ID__FORWARD_ID_DESC
197
+ FOO_BY_FOO_ID__ID_ASC
198
+ FOO_BY_FOO_ID__ID_DESC
189
199
ID_ASC
190
200
ID_DESC
191
201
NATURAL
@@ -220,6 +230,9 @@ type Foo implements Node {
220
230
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
221
231
" " "
222
232
nodeId: ID!
233
+
234
+ " " " Reads a single \` Parent\` that is related to this \` Foo\` ." " "
235
+ parentByParentId : Parent
223
236
parentId : Int
224
237
}
225
238
@@ -245,7 +258,7 @@ type FoosConnection {
245
258
" " "
246
259
A list of edges which contains the \` Foo\` and cursor to aid in pagination.
247
260
" " "
248
- edges: [FoosEdge! ]!
261
+ edges: [FoosEdge]!
249
262
250
263
" " " A list of \` Foo\` objects." " "
251
264
nodes : [Foo ]!
@@ -289,6 +302,8 @@ enum FoosOrderBy {
289
302
ID_ASC
290
303
ID_DESC
291
304
NATURAL
305
+ PARENT_BY_PARENT_ID__ID_ASC
306
+ PARENT_BY_PARENT_ID__ID_DESC
292
307
PRIMARY_KEY_ASC
293
308
PRIMARY_KEY_DESC
294
309
}
@@ -335,7 +350,7 @@ type ForwardCompoundsConnection {
335
350
" " "
336
351
A list of edges which contains the \` ForwardCompound\` and cursor to aid in pagination.
337
352
" " "
338
- edges: [ForwardCompoundsEdge! ]!
353
+ edges: [ForwardCompoundsEdge]!
339
354
340
355
" " " A list of \` ForwardCompound\` objects." " "
341
356
nodes : [ForwardCompound ]!
@@ -388,7 +403,7 @@ type ForwardsConnection {
388
403
" " "
389
404
A list of edges which contains the \` Forward\` and cursor to aid in pagination.
390
405
" " "
391
- edges: [ForwardsEdge! ]!
406
+ edges: [ForwardsEdge]!
392
407
393
408
" " " A list of \` Forward\` objects." " "
394
409
nodes : [Forward ]!
@@ -474,7 +489,7 @@ type ParentsConnection {
474
489
" " "
475
490
A list of edges which contains the \` Parent\` and cursor to aid in pagination.
476
491
" " "
477
- edges: [ParentsEdge! ]!
492
+ edges: [ParentsEdge]!
478
493
479
494
" " " A list of \` Parent\` objects." " "
480
495
nodes : [Parent ]!
@@ -714,7 +729,11 @@ type Query implements Node {
714
729
"""The globally unique \` ID\` to be used in selecting a single \` Backward\` ."""
715
730
nodeId: ID!
716
731
): Backward
732
+
733
+ """Get a single \` Backward\` ."""
717
734
backwardByFooId(fooId: Int!): Backward
735
+
736
+ """Get a single \` Backward\` ."""
718
737
backwardById(id: Int!): Backward
719
738
720
739
"""Reads a single \` BackwardCompound\` using its globally unique \` ID\` ."""
@@ -724,30 +743,44 @@ type Query implements Node {
724
743
"""
725
744
nodeId: ID!
726
745
): BackwardCompound
746
+
747
+ """Get a single \` BackwardCompound\` ."""
727
748
backwardCompoundByBackwardCompound1AndBackwardCompound2(backwardCompound1: Int!, backwardCompound2: Int!): BackwardCompound
728
749
729
750
"""Reads a single \` Child\` using its globally unique \` ID\` ."""
730
751
child(
731
752
"""The globally unique \` ID\` to be used in selecting a single \` Child\` ."""
732
753
nodeId: ID!
733
754
): Child
755
+
756
+ """Get a single \` Child\` ."""
734
757
childById(id: Int!): Child
735
758
736
759
"""Reads a single \` Foo\` using its globally unique \` ID\` ."""
737
760
foo(
738
761
"""The globally unique \` ID\` to be used in selecting a single \` Foo\` ."""
739
762
nodeId: ID!
740
763
): Foo
764
+
765
+ """Get a single \` Foo\` ."""
741
766
fooByBackwardCompound1AndBackwardCompound2(backwardCompound1: Int!, backwardCompound2: Int!): Foo
767
+
768
+ """Get a single \` Foo\` ."""
742
769
fooByForwardCompound1AndForwardCompound2(forwardCompound1: Int!, forwardCompound2: Int!): Foo
770
+
771
+ """Get a single \` Foo\` ."""
743
772
fooByForwardId(forwardId: Int!): Foo
773
+
774
+ """Get a single \` Foo\` ."""
744
775
fooById(id: Int!): Foo
745
776
746
777
"""Reads a single \` Forward\` using its globally unique \` ID\` ."""
747
778
forward(
748
779
"""The globally unique \` ID\` to be used in selecting a single \` Forward\` ."""
749
780
nodeId: ID!
750
781
): Forward
782
+
783
+ """Get a single \` Forward\` ."""
751
784
forwardById(id: Int!): Forward
752
785
753
786
"""Reads a single \` ForwardCompound\` using its globally unique \` ID\` ."""
@@ -757,6 +790,8 @@ type Query implements Node {
757
790
"""
758
791
nodeId: ID!
759
792
): ForwardCompound
793
+
794
+ """Get a single \` ForwardCompound\` ."""
760
795
forwardCompoundByForwardCompound1AndForwardCompound2(forwardCompound1: Int!, forwardCompound2: Int!): ForwardCompound
761
796
762
797
"""Fetches an object given its globally unique \` ID\` ."""
@@ -775,13 +810,14 @@ type Query implements Node {
775
810
"""The globally unique \` ID\` to be used in selecting a single \` Parent\` ."""
776
811
nodeId: ID!
777
812
): Parent
813
+
814
+ """Get a single \` Parent\` ."""
778
815
parentById(id: Int!): Parent
779
816
780
817
"""
781
818
Exposes the root query type nested one level down. This is helpful for Relay 1
782
819
which can only query top level fields if they are in a particular form.
783
820
"""
784
821
query: Query!
785
- }
786
- "
822
+ }"
787
823
` ;
0 commit comments