@@ -104,7 +104,8 @@ input CreateBarInput {
104104 bar : BarInput !
105105
106106 " " "
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 .
108109 " " "
109110 clientMutationId: String
110111}
@@ -121,7 +122,8 @@ type CreateBarPayload {
121122 ): BarsEdge
122123
123124 " " "
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 .
125127 " " "
126128 clientMutationId: String
127129
@@ -137,7 +139,8 @@ type CreateBarPayload {
137139"""All input for the create \` Foo\` mutation."""
138140input CreateFooInput {
139141 " " "
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 .
141144 " " "
142145 clientMutationId: String
143146
@@ -148,7 +151,8 @@ input CreateFooInput {
148151"""The output of our create \` Foo\` mutation."""
149152type CreateFooPayload {
150153 " " "
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 .
152156 " " "
153157 clientMutationId: String
154158
@@ -171,7 +175,8 @@ type CreateFooPayload {
171175scalar Cursor
172176
173177"""
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.
175180"""
176181scalar Datetime
177182
@@ -188,7 +193,8 @@ input DeleteBarByIdInput {
188193"""All input for the \` deleteBar\` mutation."""
189194input DeleteBarInput {
190195 " " "
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 .
192198 " " "
193199 clientMutationId: String
194200
@@ -210,7 +216,8 @@ type DeleteBarPayload {
210216 ): BarsEdge
211217
212218 " " "
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 .
214221 " " "
215222 clientMutationId: String
216223 deletedBarId : ID
@@ -237,7 +244,8 @@ input DeleteFooByIdInput {
237244"""All input for the \` deleteFoo\` mutation."""
238245input DeleteFooInput {
239246 " " "
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 .
241249 " " "
242250 clientMutationId: String
243251
@@ -250,7 +258,8 @@ input DeleteFooInput {
250258"""The output of our delete \` Foo\` mutation."""
251259type DeleteFooPayload {
252260 " " "
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 .
254263 " " "
255264 clientMutationId: String
256265 deletedFooId : ID
@@ -291,7 +300,8 @@ type Foo implements Node {
291300 last : Int
292301
293302 " " "
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\` .
295305 """
296306 offset: Int
297307
@@ -513,7 +523,8 @@ type Query implements Node {
513523 last : Int
514524
515525 " " "
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\` .
517528 """
518529 offset: Int
519530
@@ -541,7 +552,8 @@ type Query implements Node {
541552 last: Int
542553
543554 """
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\` .
545557 """
546558 offset: Int
547559
@@ -590,7 +602,8 @@ type Query implements Node {
590602 last: Int
591603
592604 """
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\` .
594607 """
595608 offset: Int
596609 ): FoosConnection
@@ -627,7 +640,8 @@ input UpdateBarInput {
627640 barPatch: BarPatch!
628641
629642 " " "
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 .
631645 " " "
632646 clientMutationId: String
633647
@@ -649,7 +663,8 @@ type UpdateBarPayload {
649663 ): BarsEdge
650664
651665 " " "
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 .
653668 " " "
654669 clientMutationId: String
655670
@@ -680,7 +695,8 @@ input UpdateFooByIdInput {
680695"""All input for the \` updateFoo\` mutation."""
681696input UpdateFooInput {
682697 " " "
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 .
684700 " " "
685701 clientMutationId: String
686702
@@ -698,7 +714,8 @@ input UpdateFooInput {
698714"""The output of our update \` Foo\` mutation."""
699715type UpdateFooPayload {
700716 " " "
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 .
702719 " " "
703720 clientMutationId: String
704721
@@ -823,7 +840,8 @@ input CreateBarInput {
823840 bar : BarInput !
824841
825842 " " "
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 .
827845 " " "
828846 clientMutationId: String
829847}
@@ -840,7 +858,8 @@ type CreateBarPayload {
840858 ): BarsEdge
841859
842860 " " "
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 .
844863 " " "
845864 clientMutationId: String
846865
@@ -856,7 +875,8 @@ type CreateBarPayload {
856875"""All input for the create \` Foo\` mutation."""
857876input CreateFooInput {
858877 " " "
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 .
860880 " " "
861881 clientMutationId: String
862882
@@ -867,7 +887,8 @@ input CreateFooInput {
867887"""The output of our create \` Foo\` mutation."""
868888type CreateFooPayload {
869889 " " "
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 .
871892 " " "
872893 clientMutationId: String
873894
@@ -890,7 +911,8 @@ type CreateFooPayload {
890911scalar Cursor
891912
892913"""
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.
894916"""
895917scalar Datetime
896918
@@ -907,7 +929,8 @@ input DeleteBarByIdInput {
907929"""All input for the \` deleteBar\` mutation."""
908930input DeleteBarInput {
909931 " " "
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 .
911934 " " "
912935 clientMutationId: String
913936
@@ -929,7 +952,8 @@ type DeleteBarPayload {
929952 ): BarsEdge
930953
931954 " " "
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 .
933957 " " "
934958 clientMutationId: String
935959 deletedBarId : ID
@@ -956,7 +980,8 @@ input DeleteFooByIdInput {
956980"""All input for the \` deleteFoo\` mutation."""
957981input DeleteFooInput {
958982 " " "
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 .
960985 " " "
961986 clientMutationId: String
962987
@@ -969,7 +994,8 @@ input DeleteFooInput {
969994"""The output of our delete \` Foo\` mutation."""
970995type DeleteFooPayload {
971996 " " "
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 .
973999 " " "
9741000 clientMutationId: String
9751001 deletedFooId : ID
@@ -1010,7 +1036,8 @@ type Foo implements Node {
10101036 last : Int
10111037
10121038 " " "
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\` .
10141041 """
10151042 offset: Int
10161043
@@ -1241,7 +1268,8 @@ type Query implements Node {
12411268 last : Int
12421269
12431270 " " "
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\` .
12451273 """
12461274 offset: Int
12471275
@@ -1269,7 +1297,8 @@ type Query implements Node {
12691297 last: Int
12701298
12711299 """
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\` .
12731302 """
12741303 offset: Int
12751304
@@ -1318,7 +1347,8 @@ type Query implements Node {
13181347 last: Int
13191348
13201349 """
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\` .
13221352 """
13231353 offset: Int
13241354 ): FoosConnection
@@ -1362,7 +1392,8 @@ input UpdateBarInput {
13621392 barPatch: BarPatch!
13631393
13641394 " " "
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 .
13661397 " " "
13671398 clientMutationId: String
13681399
@@ -1384,7 +1415,8 @@ type UpdateBarPayload {
13841415 ): BarsEdge
13851416
13861417 " " "
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 .
13881420 " " "
13891421 clientMutationId: String
13901422
@@ -1415,7 +1447,8 @@ input UpdateFooByIdInput {
14151447"""All input for the \` updateFoo\` mutation."""
14161448input UpdateFooInput {
14171449 " " "
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 .
14191452 " " "
14201453 clientMutationId: String
14211454
@@ -1433,7 +1466,8 @@ input UpdateFooInput {
14331466"""The output of our update \` Foo\` mutation."""
14341467type UpdateFooPayload {
14351468 " " "
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 .
14371471 " " "
14381472 clientMutationId: String
14391473
0 commit comments