@@ -104,7 +104,8 @@ input CreateBarInput {
104
104
bar : BarInput !
105
105
106
106
" " "
107
- An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.
107
+ An arbitrary string value with no semantic meaning. Will be included in the
108
+ payload verbatim . May be used to track mutations by the client .
108
109
" " "
109
110
clientMutationId: String
110
111
}
@@ -121,7 +122,8 @@ type CreateBarPayload {
121
122
): BarsEdge
122
123
123
124
" " "
124
- The exact same \` clientMutationId\` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.
125
+ The exact same \` clientMutationId\` that was provided in the mutation input,
126
+ unchanged and unused . May be used by a client to track mutations .
125
127
" " "
126
128
clientMutationId: String
127
129
@@ -137,7 +139,8 @@ type CreateBarPayload {
137
139
"""All input for the create \` Foo\` mutation."""
138
140
input CreateFooInput {
139
141
" " "
140
- An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.
142
+ An arbitrary string value with no semantic meaning. Will be included in the
143
+ payload verbatim . May be used to track mutations by the client .
141
144
" " "
142
145
clientMutationId: String
143
146
@@ -148,7 +151,8 @@ input CreateFooInput {
148
151
"""The output of our create \` Foo\` mutation."""
149
152
type CreateFooPayload {
150
153
" " "
151
- The exact same \` clientMutationId\` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.
154
+ The exact same \` clientMutationId\` that was provided in the mutation input,
155
+ unchanged and unused . May be used by a client to track mutations .
152
156
" " "
153
157
clientMutationId: String
154
158
@@ -171,7 +175,8 @@ type CreateFooPayload {
171
175
scalar Cursor
172
176
173
177
"""
174
- A point in time as described by the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone.
178
+ A point in time as described by the [ISO
179
+ 8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone.
175
180
"""
176
181
scalar Datetime
177
182
@@ -188,7 +193,8 @@ input DeleteBarByIdInput {
188
193
"""All input for the \` deleteBar\` mutation."""
189
194
input DeleteBarInput {
190
195
" " "
191
- An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.
196
+ An arbitrary string value with no semantic meaning. Will be included in the
197
+ payload verbatim . May be used to track mutations by the client .
192
198
" " "
193
199
clientMutationId: String
194
200
@@ -210,7 +216,8 @@ type DeleteBarPayload {
210
216
): BarsEdge
211
217
212
218
" " "
213
- The exact same \` clientMutationId\` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.
219
+ The exact same \` clientMutationId\` that was provided in the mutation input,
220
+ unchanged and unused . May be used by a client to track mutations .
214
221
" " "
215
222
clientMutationId: String
216
223
deletedBarId : ID
@@ -237,7 +244,8 @@ input DeleteFooByIdInput {
237
244
"""All input for the \` deleteFoo\` mutation."""
238
245
input DeleteFooInput {
239
246
" " "
240
- An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.
247
+ An arbitrary string value with no semantic meaning. Will be included in the
248
+ payload verbatim . May be used to track mutations by the client .
241
249
" " "
242
250
clientMutationId: String
243
251
@@ -250,7 +258,8 @@ input DeleteFooInput {
250
258
"""The output of our delete \` Foo\` mutation."""
251
259
type DeleteFooPayload {
252
260
" " "
253
- The exact same \` clientMutationId\` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.
261
+ The exact same \` clientMutationId\` that was provided in the mutation input,
262
+ unchanged and unused . May be used by a client to track mutations .
254
263
" " "
255
264
clientMutationId: String
256
265
deletedFooId : ID
@@ -291,7 +300,8 @@ type Foo implements Node {
291
300
last : Int
292
301
293
302
" " "
294
- Skip the first \` n\` values from our \` after\` cursor, an alternative to cursor based pagination. May not be used with \` last\` .
303
+ Skip the first \` n\` values from our \` after\` cursor, an alternative to cursor
304
+ based pagination . May not be used with \` last\` .
295
305
"""
296
306
offset: Int
297
307
@@ -513,7 +523,8 @@ type Query implements Node {
513
523
last : Int
514
524
515
525
" " "
516
- Skip the first \` n\` values from our \` after\` cursor, an alternative to cursor based pagination. May not be used with \` last\` .
526
+ Skip the first \` n\` values from our \` after\` cursor, an alternative to cursor
527
+ based pagination . May not be used with \` last\` .
517
528
"""
518
529
offset: Int
519
530
@@ -541,7 +552,8 @@ type Query implements Node {
541
552
last: Int
542
553
543
554
"""
544
- Skip the first \` n\` values from our \` after\` cursor, an alternative to cursor based pagination. May not be used with \` last\` .
555
+ Skip the first \` n\` values from our \` after\` cursor, an alternative to cursor
556
+ based pagination. May not be used with \` last\` .
545
557
"""
546
558
offset: Int
547
559
@@ -590,7 +602,8 @@ type Query implements Node {
590
602
last: Int
591
603
592
604
"""
593
- Skip the first \` n\` values from our \` after\` cursor, an alternative to cursor based pagination. May not be used with \` last\` .
605
+ Skip the first \` n\` values from our \` after\` cursor, an alternative to cursor
606
+ based pagination. May not be used with \` last\` .
594
607
"""
595
608
offset: Int
596
609
): FoosConnection
@@ -627,7 +640,8 @@ input UpdateBarInput {
627
640
barPatch: BarPatch!
628
641
629
642
" " "
630
- An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.
643
+ An arbitrary string value with no semantic meaning. Will be included in the
644
+ payload verbatim . May be used to track mutations by the client .
631
645
" " "
632
646
clientMutationId: String
633
647
@@ -649,7 +663,8 @@ type UpdateBarPayload {
649
663
): BarsEdge
650
664
651
665
" " "
652
- The exact same \` clientMutationId\` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.
666
+ The exact same \` clientMutationId\` that was provided in the mutation input,
667
+ unchanged and unused . May be used by a client to track mutations .
653
668
" " "
654
669
clientMutationId: String
655
670
@@ -680,7 +695,8 @@ input UpdateFooByIdInput {
680
695
"""All input for the \` updateFoo\` mutation."""
681
696
input UpdateFooInput {
682
697
" " "
683
- An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.
698
+ An arbitrary string value with no semantic meaning. Will be included in the
699
+ payload verbatim . May be used to track mutations by the client .
684
700
" " "
685
701
clientMutationId: String
686
702
@@ -698,7 +714,8 @@ input UpdateFooInput {
698
714
"""The output of our update \` Foo\` mutation."""
699
715
type UpdateFooPayload {
700
716
" " "
701
- The exact same \` clientMutationId\` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.
717
+ The exact same \` clientMutationId\` that was provided in the mutation input,
718
+ unchanged and unused . May be used by a client to track mutations .
702
719
" " "
703
720
clientMutationId: String
704
721
@@ -823,7 +840,8 @@ input CreateBarInput {
823
840
bar : BarInput !
824
841
825
842
" " "
826
- An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.
843
+ An arbitrary string value with no semantic meaning. Will be included in the
844
+ payload verbatim . May be used to track mutations by the client .
827
845
" " "
828
846
clientMutationId: String
829
847
}
@@ -840,7 +858,8 @@ type CreateBarPayload {
840
858
): BarsEdge
841
859
842
860
" " "
843
- The exact same \` clientMutationId\` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.
861
+ The exact same \` clientMutationId\` that was provided in the mutation input,
862
+ unchanged and unused . May be used by a client to track mutations .
844
863
" " "
845
864
clientMutationId: String
846
865
@@ -856,7 +875,8 @@ type CreateBarPayload {
856
875
"""All input for the create \` Foo\` mutation."""
857
876
input CreateFooInput {
858
877
" " "
859
- An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.
878
+ An arbitrary string value with no semantic meaning. Will be included in the
879
+ payload verbatim . May be used to track mutations by the client .
860
880
" " "
861
881
clientMutationId: String
862
882
@@ -867,7 +887,8 @@ input CreateFooInput {
867
887
"""The output of our create \` Foo\` mutation."""
868
888
type CreateFooPayload {
869
889
" " "
870
- The exact same \` clientMutationId\` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.
890
+ The exact same \` clientMutationId\` that was provided in the mutation input,
891
+ unchanged and unused . May be used by a client to track mutations .
871
892
" " "
872
893
clientMutationId: String
873
894
@@ -890,7 +911,8 @@ type CreateFooPayload {
890
911
scalar Cursor
891
912
892
913
"""
893
- A point in time as described by the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone.
914
+ A point in time as described by the [ISO
915
+ 8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone.
894
916
"""
895
917
scalar Datetime
896
918
@@ -907,7 +929,8 @@ input DeleteBarByIdInput {
907
929
"""All input for the \` deleteBar\` mutation."""
908
930
input DeleteBarInput {
909
931
" " "
910
- An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.
932
+ An arbitrary string value with no semantic meaning. Will be included in the
933
+ payload verbatim . May be used to track mutations by the client .
911
934
" " "
912
935
clientMutationId: String
913
936
@@ -929,7 +952,8 @@ type DeleteBarPayload {
929
952
): BarsEdge
930
953
931
954
" " "
932
- The exact same \` clientMutationId\` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.
955
+ The exact same \` clientMutationId\` that was provided in the mutation input,
956
+ unchanged and unused . May be used by a client to track mutations .
933
957
" " "
934
958
clientMutationId: String
935
959
deletedBarId : ID
@@ -956,7 +980,8 @@ input DeleteFooByIdInput {
956
980
"""All input for the \` deleteFoo\` mutation."""
957
981
input DeleteFooInput {
958
982
" " "
959
- An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.
983
+ An arbitrary string value with no semantic meaning. Will be included in the
984
+ payload verbatim . May be used to track mutations by the client .
960
985
" " "
961
986
clientMutationId: String
962
987
@@ -969,7 +994,8 @@ input DeleteFooInput {
969
994
"""The output of our delete \` Foo\` mutation."""
970
995
type DeleteFooPayload {
971
996
" " "
972
- The exact same \` clientMutationId\` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.
997
+ The exact same \` clientMutationId\` that was provided in the mutation input,
998
+ unchanged and unused . May be used by a client to track mutations .
973
999
" " "
974
1000
clientMutationId: String
975
1001
deletedFooId : ID
@@ -1010,7 +1036,8 @@ type Foo implements Node {
1010
1036
last : Int
1011
1037
1012
1038
" " "
1013
- Skip the first \` n\` values from our \` after\` cursor, an alternative to cursor based pagination. May not be used with \` last\` .
1039
+ Skip the first \` n\` values from our \` after\` cursor, an alternative to cursor
1040
+ based pagination . May not be used with \` last\` .
1014
1041
"""
1015
1042
offset: Int
1016
1043
@@ -1241,7 +1268,8 @@ type Query implements Node {
1241
1268
last : Int
1242
1269
1243
1270
" " "
1244
- Skip the first \` n\` values from our \` after\` cursor, an alternative to cursor based pagination. May not be used with \` last\` .
1271
+ Skip the first \` n\` values from our \` after\` cursor, an alternative to cursor
1272
+ based pagination . May not be used with \` last\` .
1245
1273
"""
1246
1274
offset: Int
1247
1275
@@ -1269,7 +1297,8 @@ type Query implements Node {
1269
1297
last: Int
1270
1298
1271
1299
"""
1272
- Skip the first \` n\` values from our \` after\` cursor, an alternative to cursor based pagination. May not be used with \` last\` .
1300
+ Skip the first \` n\` values from our \` after\` cursor, an alternative to cursor
1301
+ based pagination. May not be used with \` last\` .
1273
1302
"""
1274
1303
offset: Int
1275
1304
@@ -1318,7 +1347,8 @@ type Query implements Node {
1318
1347
last: Int
1319
1348
1320
1349
"""
1321
- Skip the first \` n\` values from our \` after\` cursor, an alternative to cursor based pagination. May not be used with \` last\` .
1350
+ Skip the first \` n\` values from our \` after\` cursor, an alternative to cursor
1351
+ based pagination. May not be used with \` last\` .
1322
1352
"""
1323
1353
offset: Int
1324
1354
): FoosConnection
@@ -1362,7 +1392,8 @@ input UpdateBarInput {
1362
1392
barPatch: BarPatch!
1363
1393
1364
1394
" " "
1365
- An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.
1395
+ An arbitrary string value with no semantic meaning. Will be included in the
1396
+ payload verbatim . May be used to track mutations by the client .
1366
1397
" " "
1367
1398
clientMutationId: String
1368
1399
@@ -1384,7 +1415,8 @@ type UpdateBarPayload {
1384
1415
): BarsEdge
1385
1416
1386
1417
" " "
1387
- The exact same \` clientMutationId\` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.
1418
+ The exact same \` clientMutationId\` that was provided in the mutation input,
1419
+ unchanged and unused . May be used by a client to track mutations .
1388
1420
" " "
1389
1421
clientMutationId: String
1390
1422
@@ -1415,7 +1447,8 @@ input UpdateFooByIdInput {
1415
1447
"""All input for the \` updateFoo\` mutation."""
1416
1448
input UpdateFooInput {
1417
1449
" " "
1418
- An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.
1450
+ An arbitrary string value with no semantic meaning. Will be included in the
1451
+ payload verbatim . May be used to track mutations by the client .
1419
1452
" " "
1420
1453
clientMutationId: String
1421
1454
@@ -1433,7 +1466,8 @@ input UpdateFooInput {
1433
1466
"""The output of our update \` Foo\` mutation."""
1434
1467
type UpdateFooPayload {
1435
1468
" " "
1436
- The exact same \` clientMutationId\` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.
1469
+ The exact same \` clientMutationId\` that was provided in the mutation input,
1470
+ unchanged and unused . May be used by a client to track mutations .
1437
1471
" " "
1438
1472
clientMutationId: String
1439
1473
0 commit comments