xref: /expo/home/graphql.schema.json (revision dfd15ebd)
1{
2  "__schema": {
3    "queryType": {
4      "name": "RootQuery"
5    },
6    "mutationType": {
7      "name": "RootMutation"
8    },
9    "subscriptionType": null,
10    "types": [
11      {
12        "kind": "OBJECT",
13        "name": "AcceptUserInvitationResult",
14        "description": null,
15        "fields": [
16          {
17            "name": "success",
18            "description": null,
19            "args": [],
20            "type": {
21              "kind": "NON_NULL",
22              "name": null,
23              "ofType": {
24                "kind": "SCALAR",
25                "name": "Boolean",
26                "ofType": null
27              }
28            },
29            "isDeprecated": false,
30            "deprecationReason": null
31          }
32        ],
33        "inputFields": null,
34        "interfaces": [],
35        "enumValues": null,
36        "possibleTypes": null
37      },
38      {
39        "kind": "OBJECT",
40        "name": "AccessToken",
41        "description": "A method of authentication for an Actor",
42        "fields": [
43          {
44            "name": "createdAt",
45            "description": null,
46            "args": [],
47            "type": {
48              "kind": "NON_NULL",
49              "name": null,
50              "ofType": {
51                "kind": "SCALAR",
52                "name": "DateTime",
53                "ofType": null
54              }
55            },
56            "isDeprecated": false,
57            "deprecationReason": null
58          },
59          {
60            "name": "id",
61            "description": null,
62            "args": [],
63            "type": {
64              "kind": "NON_NULL",
65              "name": null,
66              "ofType": {
67                "kind": "SCALAR",
68                "name": "ID",
69                "ofType": null
70              }
71            },
72            "isDeprecated": false,
73            "deprecationReason": null
74          },
75          {
76            "name": "lastUsedAt",
77            "description": null,
78            "args": [],
79            "type": {
80              "kind": "SCALAR",
81              "name": "DateTime",
82              "ofType": null
83            },
84            "isDeprecated": false,
85            "deprecationReason": null
86          },
87          {
88            "name": "note",
89            "description": null,
90            "args": [],
91            "type": {
92              "kind": "SCALAR",
93              "name": "String",
94              "ofType": null
95            },
96            "isDeprecated": false,
97            "deprecationReason": null
98          },
99          {
100            "name": "owner",
101            "description": null,
102            "args": [],
103            "type": {
104              "kind": "NON_NULL",
105              "name": null,
106              "ofType": {
107                "kind": "INTERFACE",
108                "name": "Actor",
109                "ofType": null
110              }
111            },
112            "isDeprecated": false,
113            "deprecationReason": null
114          },
115          {
116            "name": "revokedAt",
117            "description": null,
118            "args": [],
119            "type": {
120              "kind": "SCALAR",
121              "name": "DateTime",
122              "ofType": null
123            },
124            "isDeprecated": false,
125            "deprecationReason": null
126          },
127          {
128            "name": "updatedAt",
129            "description": null,
130            "args": [],
131            "type": {
132              "kind": "NON_NULL",
133              "name": null,
134              "ofType": {
135                "kind": "SCALAR",
136                "name": "DateTime",
137                "ofType": null
138              }
139            },
140            "isDeprecated": false,
141            "deprecationReason": null
142          },
143          {
144            "name": "visibleTokenPrefix",
145            "description": null,
146            "args": [],
147            "type": {
148              "kind": "NON_NULL",
149              "name": null,
150              "ofType": {
151                "kind": "SCALAR",
152                "name": "String",
153                "ofType": null
154              }
155            },
156            "isDeprecated": false,
157            "deprecationReason": null
158          }
159        ],
160        "inputFields": null,
161        "interfaces": [],
162        "enumValues": null,
163        "possibleTypes": null
164      },
165      {
166        "kind": "OBJECT",
167        "name": "AccessTokenMutation",
168        "description": null,
169        "fields": [
170          {
171            "name": "createAccessToken",
172            "description": "Create an AccessToken for an Actor",
173            "args": [
174              {
175                "name": "createAccessTokenData",
176                "description": null,
177                "type": {
178                  "kind": "NON_NULL",
179                  "name": null,
180                  "ofType": {
181                    "kind": "INPUT_OBJECT",
182                    "name": "CreateAccessTokenInput",
183                    "ofType": null
184                  }
185                },
186                "defaultValue": null,
187                "isDeprecated": false,
188                "deprecationReason": null
189              }
190            ],
191            "type": {
192              "kind": "NON_NULL",
193              "name": null,
194              "ofType": {
195                "kind": "OBJECT",
196                "name": "CreateAccessTokenResponse",
197                "ofType": null
198              }
199            },
200            "isDeprecated": false,
201            "deprecationReason": null
202          },
203          {
204            "name": "deleteAccessToken",
205            "description": "Delete an AccessToken",
206            "args": [
207              {
208                "name": "id",
209                "description": null,
210                "type": {
211                  "kind": "NON_NULL",
212                  "name": null,
213                  "ofType": {
214                    "kind": "SCALAR",
215                    "name": "ID",
216                    "ofType": null
217                  }
218                },
219                "defaultValue": null,
220                "isDeprecated": false,
221                "deprecationReason": null
222              }
223            ],
224            "type": {
225              "kind": "NON_NULL",
226              "name": null,
227              "ofType": {
228                "kind": "OBJECT",
229                "name": "DeleteAccessTokenResult",
230                "ofType": null
231              }
232            },
233            "isDeprecated": false,
234            "deprecationReason": null
235          },
236          {
237            "name": "setAccessTokenRevoked",
238            "description": "Revoke an AccessToken",
239            "args": [
240              {
241                "name": "id",
242                "description": null,
243                "type": {
244                  "kind": "NON_NULL",
245                  "name": null,
246                  "ofType": {
247                    "kind": "SCALAR",
248                    "name": "ID",
249                    "ofType": null
250                  }
251                },
252                "defaultValue": null,
253                "isDeprecated": false,
254                "deprecationReason": null
255              },
256              {
257                "name": "revoked",
258                "description": null,
259                "type": {
260                  "kind": "SCALAR",
261                  "name": "Boolean",
262                  "ofType": null
263                },
264                "defaultValue": null,
265                "isDeprecated": false,
266                "deprecationReason": null
267              }
268            ],
269            "type": {
270              "kind": "NON_NULL",
271              "name": null,
272              "ofType": {
273                "kind": "OBJECT",
274                "name": "AccessToken",
275                "ofType": null
276              }
277            },
278            "isDeprecated": false,
279            "deprecationReason": null
280          }
281        ],
282        "inputFields": null,
283        "interfaces": [],
284        "enumValues": null,
285        "possibleTypes": null
286      },
287      {
288        "kind": "OBJECT",
289        "name": "Account",
290        "description": "An account is a container owning projects, credentials, billing and other organization\ndata and settings. Actors may own and be members of accounts.",
291        "fields": [
292          {
293            "name": "accessTokens",
294            "description": null,
295            "args": [],
296            "type": {
297              "kind": "NON_NULL",
298              "name": null,
299              "ofType": {
300                "kind": "LIST",
301                "name": null,
302                "ofType": {
303                  "kind": "OBJECT",
304                  "name": "AccessToken",
305                  "ofType": null
306                }
307              }
308            },
309            "isDeprecated": true,
310            "deprecationReason": "Legacy access tokens are deprecated"
311          },
312          {
313            "name": "activityTimelineProjectActivities",
314            "description": "Coalesced project activity for all apps belonging to this account.",
315            "args": [
316              {
317                "name": "createdBefore",
318                "description": " Offset the query ",
319                "type": {
320                  "kind": "SCALAR",
321                  "name": "DateTime",
322                  "ofType": null
323                },
324                "defaultValue": null,
325                "isDeprecated": false,
326                "deprecationReason": null
327              },
328              {
329                "name": "filterTypes",
330                "description": " Types of objects to filter ",
331                "type": {
332                  "kind": "LIST",
333                  "name": null,
334                  "ofType": {
335                    "kind": "NON_NULL",
336                    "name": null,
337                    "ofType": {
338                      "kind": "ENUM",
339                      "name": "ActivityTimelineProjectActivityType",
340                      "ofType": null
341                    }
342                  }
343                },
344                "defaultValue": null,
345                "isDeprecated": false,
346                "deprecationReason": null
347              },
348              {
349                "name": "limit",
350                "description": null,
351                "type": {
352                  "kind": "NON_NULL",
353                  "name": null,
354                  "ofType": {
355                    "kind": "SCALAR",
356                    "name": "Int",
357                    "ofType": null
358                  }
359                },
360                "defaultValue": null,
361                "isDeprecated": false,
362                "deprecationReason": null
363              }
364            ],
365            "type": {
366              "kind": "NON_NULL",
367              "name": null,
368              "ofType": {
369                "kind": "LIST",
370                "name": null,
371                "ofType": {
372                  "kind": "NON_NULL",
373                  "name": null,
374                  "ofType": {
375                    "kind": "INTERFACE",
376                    "name": "ActivityTimelineProjectActivity",
377                    "ofType": null
378                  }
379                }
380              }
381            },
382            "isDeprecated": false,
383            "deprecationReason": null
384          },
385          {
386            "name": "appCount",
387            "description": null,
388            "args": [],
389            "type": {
390              "kind": "NON_NULL",
391              "name": null,
392              "ofType": {
393                "kind": "SCALAR",
394                "name": "Int",
395                "ofType": null
396              }
397            },
398            "isDeprecated": false,
399            "deprecationReason": null
400          },
401          {
402            "name": "appStoreConnectApiKeys",
403            "description": null,
404            "args": [],
405            "type": {
406              "kind": "NON_NULL",
407              "name": null,
408              "ofType": {
409                "kind": "LIST",
410                "name": null,
411                "ofType": {
412                  "kind": "NON_NULL",
413                  "name": null,
414                  "ofType": {
415                    "kind": "OBJECT",
416                    "name": "AppStoreConnectApiKey",
417                    "ofType": null
418                  }
419                }
420              }
421            },
422            "isDeprecated": false,
423            "deprecationReason": null
424          },
425          {
426            "name": "appleAppIdentifiers",
427            "description": null,
428            "args": [
429              {
430                "name": "bundleIdentifier",
431                "description": null,
432                "type": {
433                  "kind": "SCALAR",
434                  "name": "String",
435                  "ofType": null
436                },
437                "defaultValue": null,
438                "isDeprecated": false,
439                "deprecationReason": null
440              }
441            ],
442            "type": {
443              "kind": "NON_NULL",
444              "name": null,
445              "ofType": {
446                "kind": "LIST",
447                "name": null,
448                "ofType": {
449                  "kind": "NON_NULL",
450                  "name": null,
451                  "ofType": {
452                    "kind": "OBJECT",
453                    "name": "AppleAppIdentifier",
454                    "ofType": null
455                  }
456                }
457              }
458            },
459            "isDeprecated": false,
460            "deprecationReason": null
461          },
462          {
463            "name": "appleDevices",
464            "description": null,
465            "args": [
466              {
467                "name": "identifier",
468                "description": null,
469                "type": {
470                  "kind": "SCALAR",
471                  "name": "String",
472                  "ofType": null
473                },
474                "defaultValue": null,
475                "isDeprecated": false,
476                "deprecationReason": null
477              }
478            ],
479            "type": {
480              "kind": "NON_NULL",
481              "name": null,
482              "ofType": {
483                "kind": "LIST",
484                "name": null,
485                "ofType": {
486                  "kind": "NON_NULL",
487                  "name": null,
488                  "ofType": {
489                    "kind": "OBJECT",
490                    "name": "AppleDevice",
491                    "ofType": null
492                  }
493                }
494              }
495            },
496            "isDeprecated": false,
497            "deprecationReason": null
498          },
499          {
500            "name": "appleDistributionCertificates",
501            "description": null,
502            "args": [],
503            "type": {
504              "kind": "NON_NULL",
505              "name": null,
506              "ofType": {
507                "kind": "LIST",
508                "name": null,
509                "ofType": {
510                  "kind": "NON_NULL",
511                  "name": null,
512                  "ofType": {
513                    "kind": "OBJECT",
514                    "name": "AppleDistributionCertificate",
515                    "ofType": null
516                  }
517                }
518              }
519            },
520            "isDeprecated": false,
521            "deprecationReason": null
522          },
523          {
524            "name": "appleProvisioningProfiles",
525            "description": null,
526            "args": [
527              {
528                "name": "appleAppIdentifierId",
529                "description": null,
530                "type": {
531                  "kind": "SCALAR",
532                  "name": "ID",
533                  "ofType": null
534                },
535                "defaultValue": null,
536                "isDeprecated": false,
537                "deprecationReason": null
538              }
539            ],
540            "type": {
541              "kind": "NON_NULL",
542              "name": null,
543              "ofType": {
544                "kind": "LIST",
545                "name": null,
546                "ofType": {
547                  "kind": "NON_NULL",
548                  "name": null,
549                  "ofType": {
550                    "kind": "OBJECT",
551                    "name": "AppleProvisioningProfile",
552                    "ofType": null
553                  }
554                }
555              }
556            },
557            "isDeprecated": false,
558            "deprecationReason": null
559          },
560          {
561            "name": "applePushKeys",
562            "description": null,
563            "args": [],
564            "type": {
565              "kind": "NON_NULL",
566              "name": null,
567              "ofType": {
568                "kind": "LIST",
569                "name": null,
570                "ofType": {
571                  "kind": "NON_NULL",
572                  "name": null,
573                  "ofType": {
574                    "kind": "OBJECT",
575                    "name": "ApplePushKey",
576                    "ofType": null
577                  }
578                }
579              }
580            },
581            "isDeprecated": false,
582            "deprecationReason": null
583          },
584          {
585            "name": "appleTeams",
586            "description": "iOS credentials for account",
587            "args": [
588              {
589                "name": "appleTeamIdentifier",
590                "description": null,
591                "type": {
592                  "kind": "SCALAR",
593                  "name": "String",
594                  "ofType": null
595                },
596                "defaultValue": null,
597                "isDeprecated": false,
598                "deprecationReason": null
599              }
600            ],
601            "type": {
602              "kind": "NON_NULL",
603              "name": null,
604              "ofType": {
605                "kind": "LIST",
606                "name": null,
607                "ofType": {
608                  "kind": "NON_NULL",
609                  "name": null,
610                  "ofType": {
611                    "kind": "OBJECT",
612                    "name": "AppleTeam",
613                    "ofType": null
614                  }
615                }
616              }
617            },
618            "isDeprecated": false,
619            "deprecationReason": null
620          },
621          {
622            "name": "apps",
623            "description": "Apps associated with this account",
624            "args": [
625              {
626                "name": "includeUnpublished",
627                "description": null,
628                "type": {
629                  "kind": "SCALAR",
630                  "name": "Boolean",
631                  "ofType": null
632                },
633                "defaultValue": null,
634                "isDeprecated": false,
635                "deprecationReason": null
636              },
637              {
638                "name": "limit",
639                "description": null,
640                "type": {
641                  "kind": "NON_NULL",
642                  "name": null,
643                  "ofType": {
644                    "kind": "SCALAR",
645                    "name": "Int",
646                    "ofType": null
647                  }
648                },
649                "defaultValue": null,
650                "isDeprecated": false,
651                "deprecationReason": null
652              },
653              {
654                "name": "offset",
655                "description": null,
656                "type": {
657                  "kind": "NON_NULL",
658                  "name": null,
659                  "ofType": {
660                    "kind": "SCALAR",
661                    "name": "Int",
662                    "ofType": null
663                  }
664                },
665                "defaultValue": null,
666                "isDeprecated": false,
667                "deprecationReason": null
668              }
669            ],
670            "type": {
671              "kind": "NON_NULL",
672              "name": null,
673              "ofType": {
674                "kind": "LIST",
675                "name": null,
676                "ofType": {
677                  "kind": "NON_NULL",
678                  "name": null,
679                  "ofType": {
680                    "kind": "OBJECT",
681                    "name": "App",
682                    "ofType": null
683                  }
684                }
685              }
686            },
687            "isDeprecated": false,
688            "deprecationReason": null
689          },
690          {
691            "name": "availableBuilds",
692            "description": null,
693            "args": [],
694            "type": {
695              "kind": "SCALAR",
696              "name": "Int",
697              "ofType": null
698            },
699            "isDeprecated": true,
700            "deprecationReason": "Build packs are no longer supported"
701          },
702          {
703            "name": "billing",
704            "description": "Billing information. Only visible to members with the ADMIN or OWNER role.",
705            "args": [],
706            "type": {
707              "kind": "OBJECT",
708              "name": "Billing",
709              "ofType": null
710            },
711            "isDeprecated": false,
712            "deprecationReason": null
713          },
714          {
715            "name": "billingPeriod",
716            "description": null,
717            "args": [
718              {
719                "name": "date",
720                "description": null,
721                "type": {
722                  "kind": "NON_NULL",
723                  "name": null,
724                  "ofType": {
725                    "kind": "SCALAR",
726                    "name": "DateTime",
727                    "ofType": null
728                  }
729                },
730                "defaultValue": null,
731                "isDeprecated": false,
732                "deprecationReason": null
733              }
734            ],
735            "type": {
736              "kind": "NON_NULL",
737              "name": null,
738              "ofType": {
739                "kind": "OBJECT",
740                "name": "BillingPeriod",
741                "ofType": null
742              }
743            },
744            "isDeprecated": false,
745            "deprecationReason": null
746          },
747          {
748            "name": "buildJobs",
749            "description": "Build Jobs associated with this account",
750            "args": [
751              {
752                "name": "limit",
753                "description": null,
754                "type": {
755                  "kind": "NON_NULL",
756                  "name": null,
757                  "ofType": {
758                    "kind": "SCALAR",
759                    "name": "Int",
760                    "ofType": null
761                  }
762                },
763                "defaultValue": null,
764                "isDeprecated": false,
765                "deprecationReason": null
766              },
767              {
768                "name": "offset",
769                "description": null,
770                "type": {
771                  "kind": "NON_NULL",
772                  "name": null,
773                  "ofType": {
774                    "kind": "SCALAR",
775                    "name": "Int",
776                    "ofType": null
777                  }
778                },
779                "defaultValue": null,
780                "isDeprecated": false,
781                "deprecationReason": null
782              },
783              {
784                "name": "status",
785                "description": null,
786                "type": {
787                  "kind": "ENUM",
788                  "name": "BuildJobStatus",
789                  "ofType": null
790                },
791                "defaultValue": null,
792                "isDeprecated": false,
793                "deprecationReason": null
794              }
795            ],
796            "type": {
797              "kind": "NON_NULL",
798              "name": null,
799              "ofType": {
800                "kind": "LIST",
801                "name": null,
802                "ofType": {
803                  "kind": "NON_NULL",
804                  "name": null,
805                  "ofType": {
806                    "kind": "OBJECT",
807                    "name": "BuildJob",
808                    "ofType": null
809                  }
810                }
811              }
812            },
813            "isDeprecated": false,
814            "deprecationReason": null
815          },
816          {
817            "name": "buildOrBuildJobs",
818            "description": "Coalesced Build (EAS) or BuildJob (Classic) for all apps belonging to this account.",
819            "args": [
820              {
821                "name": "createdBefore",
822                "description": " Offset the query ",
823                "type": {
824                  "kind": "SCALAR",
825                  "name": "DateTime",
826                  "ofType": null
827                },
828                "defaultValue": null,
829                "isDeprecated": false,
830                "deprecationReason": null
831              },
832              {
833                "name": "limit",
834                "description": null,
835                "type": {
836                  "kind": "NON_NULL",
837                  "name": null,
838                  "ofType": {
839                    "kind": "SCALAR",
840                    "name": "Int",
841                    "ofType": null
842                  }
843                },
844                "defaultValue": null,
845                "isDeprecated": false,
846                "deprecationReason": null
847              }
848            ],
849            "type": {
850              "kind": "NON_NULL",
851              "name": null,
852              "ofType": {
853                "kind": "LIST",
854                "name": null,
855                "ofType": {
856                  "kind": "NON_NULL",
857                  "name": null,
858                  "ofType": {
859                    "kind": "INTERFACE",
860                    "name": "BuildOrBuildJob",
861                    "ofType": null
862                  }
863                }
864              }
865            },
866            "isDeprecated": true,
867            "deprecationReason": "Use activityTimelineProjectActivities with filterTypes instead"
868          },
869          {
870            "name": "builds",
871            "description": "(EAS Build) Builds associated with this account",
872            "args": [
873              {
874                "name": "limit",
875                "description": null,
876                "type": {
877                  "kind": "NON_NULL",
878                  "name": null,
879                  "ofType": {
880                    "kind": "SCALAR",
881                    "name": "Int",
882                    "ofType": null
883                  }
884                },
885                "defaultValue": null,
886                "isDeprecated": false,
887                "deprecationReason": null
888              },
889              {
890                "name": "offset",
891                "description": null,
892                "type": {
893                  "kind": "NON_NULL",
894                  "name": null,
895                  "ofType": {
896                    "kind": "SCALAR",
897                    "name": "Int",
898                    "ofType": null
899                  }
900                },
901                "defaultValue": null,
902                "isDeprecated": false,
903                "deprecationReason": null
904              },
905              {
906                "name": "platform",
907                "description": null,
908                "type": {
909                  "kind": "ENUM",
910                  "name": "AppPlatform",
911                  "ofType": null
912                },
913                "defaultValue": null,
914                "isDeprecated": false,
915                "deprecationReason": null
916              },
917              {
918                "name": "status",
919                "description": null,
920                "type": {
921                  "kind": "ENUM",
922                  "name": "BuildStatus",
923                  "ofType": null
924                },
925                "defaultValue": null,
926                "isDeprecated": false,
927                "deprecationReason": null
928              }
929            ],
930            "type": {
931              "kind": "NON_NULL",
932              "name": null,
933              "ofType": {
934                "kind": "LIST",
935                "name": null,
936                "ofType": {
937                  "kind": "NON_NULL",
938                  "name": null,
939                  "ofType": {
940                    "kind": "OBJECT",
941                    "name": "Build",
942                    "ofType": null
943                  }
944                }
945              }
946            },
947            "isDeprecated": false,
948            "deprecationReason": null
949          },
950          {
951            "name": "createdAt",
952            "description": null,
953            "args": [],
954            "type": {
955              "kind": "NON_NULL",
956              "name": null,
957              "ofType": {
958                "kind": "SCALAR",
959                "name": "DateTime",
960                "ofType": null
961              }
962            },
963            "isDeprecated": false,
964            "deprecationReason": null
965          },
966          {
967            "name": "environmentSecrets",
968            "description": "Environment secrets for an account",
969            "args": [
970              {
971                "name": "filterNames",
972                "description": null,
973                "type": {
974                  "kind": "LIST",
975                  "name": null,
976                  "ofType": {
977                    "kind": "NON_NULL",
978                    "name": null,
979                    "ofType": {
980                      "kind": "SCALAR",
981                      "name": "String",
982                      "ofType": null
983                    }
984                  }
985                },
986                "defaultValue": null,
987                "isDeprecated": false,
988                "deprecationReason": null
989              }
990            ],
991            "type": {
992              "kind": "NON_NULL",
993              "name": null,
994              "ofType": {
995                "kind": "LIST",
996                "name": null,
997                "ofType": {
998                  "kind": "NON_NULL",
999                  "name": null,
1000                  "ofType": {
1001                    "kind": "OBJECT",
1002                    "name": "EnvironmentSecret",
1003                    "ofType": null
1004                  }
1005                }
1006              }
1007            },
1008            "isDeprecated": false,
1009            "deprecationReason": null
1010          },
1011          {
1012            "name": "googleServiceAccountKeys",
1013            "description": "Android credentials for account",
1014            "args": [],
1015            "type": {
1016              "kind": "NON_NULL",
1017              "name": null,
1018              "ofType": {
1019                "kind": "LIST",
1020                "name": null,
1021                "ofType": {
1022                  "kind": "NON_NULL",
1023                  "name": null,
1024                  "ofType": {
1025                    "kind": "OBJECT",
1026                    "name": "GoogleServiceAccountKey",
1027                    "ofType": null
1028                  }
1029                }
1030              }
1031            },
1032            "isDeprecated": false,
1033            "deprecationReason": null
1034          },
1035          {
1036            "name": "id",
1037            "description": null,
1038            "args": [],
1039            "type": {
1040              "kind": "NON_NULL",
1041              "name": null,
1042              "ofType": {
1043                "kind": "SCALAR",
1044                "name": "ID",
1045                "ofType": null
1046              }
1047            },
1048            "isDeprecated": false,
1049            "deprecationReason": null
1050          },
1051          {
1052            "name": "isCurrent",
1053            "description": null,
1054            "args": [],
1055            "type": {
1056              "kind": "NON_NULL",
1057              "name": null,
1058              "ofType": {
1059                "kind": "SCALAR",
1060                "name": "Boolean",
1061                "ofType": null
1062              }
1063            },
1064            "isDeprecated": false,
1065            "deprecationReason": null
1066          },
1067          {
1068            "name": "name",
1069            "description": null,
1070            "args": [],
1071            "type": {
1072              "kind": "NON_NULL",
1073              "name": null,
1074              "ofType": {
1075                "kind": "SCALAR",
1076                "name": "String",
1077                "ofType": null
1078              }
1079            },
1080            "isDeprecated": false,
1081            "deprecationReason": null
1082          },
1083          {
1084            "name": "offers",
1085            "description": "Offers set on this account",
1086            "args": [],
1087            "type": {
1088              "kind": "LIST",
1089              "name": null,
1090              "ofType": {
1091                "kind": "NON_NULL",
1092                "name": null,
1093                "ofType": {
1094                  "kind": "OBJECT",
1095                  "name": "Offer",
1096                  "ofType": null
1097                }
1098              }
1099            },
1100            "isDeprecated": false,
1101            "deprecationReason": null
1102          },
1103          {
1104            "name": "owner",
1105            "description": "Owning User of this account if personal account",
1106            "args": [],
1107            "type": {
1108              "kind": "OBJECT",
1109              "name": "User",
1110              "ofType": null
1111            },
1112            "isDeprecated": false,
1113            "deprecationReason": null
1114          },
1115          {
1116            "name": "pushSecurityEnabled",
1117            "description": null,
1118            "args": [],
1119            "type": {
1120              "kind": "NON_NULL",
1121              "name": null,
1122              "ofType": {
1123                "kind": "SCALAR",
1124                "name": "Boolean",
1125                "ofType": null
1126              }
1127            },
1128            "isDeprecated": false,
1129            "deprecationReason": null
1130          },
1131          {
1132            "name": "requiresAccessTokenForPushSecurity",
1133            "description": null,
1134            "args": [],
1135            "type": {
1136              "kind": "NON_NULL",
1137              "name": null,
1138              "ofType": {
1139                "kind": "SCALAR",
1140                "name": "Boolean",
1141                "ofType": null
1142              }
1143            },
1144            "isDeprecated": true,
1145            "deprecationReason": "Legacy access tokens are deprecated"
1146          },
1147          {
1148            "name": "snacks",
1149            "description": "Snacks associated with this account",
1150            "args": [
1151              {
1152                "name": "limit",
1153                "description": null,
1154                "type": {
1155                  "kind": "NON_NULL",
1156                  "name": null,
1157                  "ofType": {
1158                    "kind": "SCALAR",
1159                    "name": "Int",
1160                    "ofType": null
1161                  }
1162                },
1163                "defaultValue": null,
1164                "isDeprecated": false,
1165                "deprecationReason": null
1166              },
1167              {
1168                "name": "offset",
1169                "description": null,
1170                "type": {
1171                  "kind": "NON_NULL",
1172                  "name": null,
1173                  "ofType": {
1174                    "kind": "SCALAR",
1175                    "name": "Int",
1176                    "ofType": null
1177                  }
1178                },
1179                "defaultValue": null,
1180                "isDeprecated": false,
1181                "deprecationReason": null
1182              }
1183            ],
1184            "type": {
1185              "kind": "NON_NULL",
1186              "name": null,
1187              "ofType": {
1188                "kind": "LIST",
1189                "name": null,
1190                "ofType": {
1191                  "kind": "NON_NULL",
1192                  "name": null,
1193                  "ofType": {
1194                    "kind": "OBJECT",
1195                    "name": "Snack",
1196                    "ofType": null
1197                  }
1198                }
1199              }
1200            },
1201            "isDeprecated": false,
1202            "deprecationReason": null
1203          },
1204          {
1205            "name": "subscription",
1206            "description": "Subscription info visible to members that have VIEWER role",
1207            "args": [],
1208            "type": {
1209              "kind": "OBJECT",
1210              "name": "SubscriptionDetails",
1211              "ofType": null
1212            },
1213            "isDeprecated": false,
1214            "deprecationReason": null
1215          },
1216          {
1217            "name": "subscriptionChangesPending",
1218            "description": null,
1219            "args": [],
1220            "type": {
1221              "kind": "SCALAR",
1222              "name": "Boolean",
1223              "ofType": null
1224            },
1225            "isDeprecated": true,
1226            "deprecationReason": "No longer needed"
1227          },
1228          {
1229            "name": "unlimitedBuilds",
1230            "description": null,
1231            "args": [],
1232            "type": {
1233              "kind": "NON_NULL",
1234              "name": null,
1235              "ofType": {
1236                "kind": "SCALAR",
1237                "name": "Boolean",
1238                "ofType": null
1239              }
1240            },
1241            "isDeprecated": true,
1242            "deprecationReason": "See isCurrent"
1243          },
1244          {
1245            "name": "updatedAt",
1246            "description": null,
1247            "args": [],
1248            "type": {
1249              "kind": "NON_NULL",
1250              "name": null,
1251              "ofType": {
1252                "kind": "SCALAR",
1253                "name": "DateTime",
1254                "ofType": null
1255              }
1256            },
1257            "isDeprecated": false,
1258            "deprecationReason": null
1259          },
1260          {
1261            "name": "usageMetrics",
1262            "description": "Account query object for querying EAS usage metrics",
1263            "args": [],
1264            "type": {
1265              "kind": "NON_NULL",
1266              "name": null,
1267              "ofType": {
1268                "kind": "OBJECT",
1269                "name": "AccountUsageMetrics",
1270                "ofType": null
1271              }
1272            },
1273            "isDeprecated": false,
1274            "deprecationReason": null
1275          },
1276          {
1277            "name": "userInvitations",
1278            "description": "Pending user invitations for this account",
1279            "args": [],
1280            "type": {
1281              "kind": "NON_NULL",
1282              "name": null,
1283              "ofType": {
1284                "kind": "LIST",
1285                "name": null,
1286                "ofType": {
1287                  "kind": "NON_NULL",
1288                  "name": null,
1289                  "ofType": {
1290                    "kind": "OBJECT",
1291                    "name": "UserInvitation",
1292                    "ofType": null
1293                  }
1294                }
1295              }
1296            },
1297            "isDeprecated": false,
1298            "deprecationReason": null
1299          },
1300          {
1301            "name": "users",
1302            "description": "Actors associated with this account and permissions they hold",
1303            "args": [],
1304            "type": {
1305              "kind": "NON_NULL",
1306              "name": null,
1307              "ofType": {
1308                "kind": "LIST",
1309                "name": null,
1310                "ofType": {
1311                  "kind": "NON_NULL",
1312                  "name": null,
1313                  "ofType": {
1314                    "kind": "OBJECT",
1315                    "name": "UserPermission",
1316                    "ofType": null
1317                  }
1318                }
1319              }
1320            },
1321            "isDeprecated": false,
1322            "deprecationReason": null
1323          },
1324          {
1325            "name": "willAutoRenewBuilds",
1326            "description": null,
1327            "args": [],
1328            "type": {
1329              "kind": "SCALAR",
1330              "name": "Boolean",
1331              "ofType": null
1332            },
1333            "isDeprecated": true,
1334            "deprecationReason": "Build packs are no longer supported"
1335          }
1336        ],
1337        "inputFields": null,
1338        "interfaces": [],
1339        "enumValues": null,
1340        "possibleTypes": null
1341      },
1342      {
1343        "kind": "INPUT_OBJECT",
1344        "name": "AccountDataInput",
1345        "description": null,
1346        "fields": null,
1347        "inputFields": [
1348          {
1349            "name": "name",
1350            "description": null,
1351            "type": {
1352              "kind": "NON_NULL",
1353              "name": null,
1354              "ofType": {
1355                "kind": "SCALAR",
1356                "name": "String",
1357                "ofType": null
1358              }
1359            },
1360            "defaultValue": null,
1361            "isDeprecated": false,
1362            "deprecationReason": null
1363          }
1364        ],
1365        "interfaces": null,
1366        "enumValues": null,
1367        "possibleTypes": null
1368      },
1369      {
1370        "kind": "OBJECT",
1371        "name": "AccountMutation",
1372        "description": null,
1373        "fields": [
1374          {
1375            "name": "buyProduct",
1376            "description": "Makes a one time purchase",
1377            "args": [
1378              {
1379                "name": "accountName",
1380                "description": null,
1381                "type": {
1382                  "kind": "NON_NULL",
1383                  "name": null,
1384                  "ofType": {
1385                    "kind": "SCALAR",
1386                    "name": "ID",
1387                    "ofType": null
1388                  }
1389                },
1390                "defaultValue": null,
1391                "isDeprecated": false,
1392                "deprecationReason": null
1393              },
1394              {
1395                "name": "autoRenew",
1396                "description": null,
1397                "type": {
1398                  "kind": "SCALAR",
1399                  "name": "Boolean",
1400                  "ofType": null
1401                },
1402                "defaultValue": null,
1403                "isDeprecated": false,
1404                "deprecationReason": null
1405              },
1406              {
1407                "name": "paymentSource",
1408                "description": null,
1409                "type": {
1410                  "kind": "SCALAR",
1411                  "name": "ID",
1412                  "ofType": null
1413                },
1414                "defaultValue": null,
1415                "isDeprecated": false,
1416                "deprecationReason": null
1417              },
1418              {
1419                "name": "productId",
1420                "description": null,
1421                "type": {
1422                  "kind": "NON_NULL",
1423                  "name": null,
1424                  "ofType": {
1425                    "kind": "SCALAR",
1426                    "name": "ID",
1427                    "ofType": null
1428                  }
1429                },
1430                "defaultValue": null,
1431                "isDeprecated": false,
1432                "deprecationReason": null
1433              }
1434            ],
1435            "type": {
1436              "kind": "OBJECT",
1437              "name": "Account",
1438              "ofType": null
1439            },
1440            "isDeprecated": true,
1441            "deprecationReason": "Build packs are no longer supported"
1442          },
1443          {
1444            "name": "cancelScheduledSubscriptionChange",
1445            "description": "Cancel scheduled subscription change",
1446            "args": [
1447              {
1448                "name": "accountID",
1449                "description": null,
1450                "type": {
1451                  "kind": "NON_NULL",
1452                  "name": null,
1453                  "ofType": {
1454                    "kind": "SCALAR",
1455                    "name": "ID",
1456                    "ofType": null
1457                  }
1458                },
1459                "defaultValue": null,
1460                "isDeprecated": false,
1461                "deprecationReason": null
1462              }
1463            ],
1464            "type": {
1465              "kind": "NON_NULL",
1466              "name": null,
1467              "ofType": {
1468                "kind": "OBJECT",
1469                "name": "Account",
1470                "ofType": null
1471              }
1472            },
1473            "isDeprecated": false,
1474            "deprecationReason": null
1475          },
1476          {
1477            "name": "cancelSubscription",
1478            "description": "Cancels the active subscription",
1479            "args": [
1480              {
1481                "name": "accountName",
1482                "description": null,
1483                "type": {
1484                  "kind": "NON_NULL",
1485                  "name": null,
1486                  "ofType": {
1487                    "kind": "SCALAR",
1488                    "name": "ID",
1489                    "ofType": null
1490                  }
1491                },
1492                "defaultValue": null,
1493                "isDeprecated": false,
1494                "deprecationReason": null
1495              }
1496            ],
1497            "type": {
1498              "kind": "NON_NULL",
1499              "name": null,
1500              "ofType": {
1501                "kind": "OBJECT",
1502                "name": "Account",
1503                "ofType": null
1504              }
1505            },
1506            "isDeprecated": false,
1507            "deprecationReason": null
1508          },
1509          {
1510            "name": "changePlan",
1511            "description": "Upgrades or downgrades the active subscription to the newPlanIdentifier, which must be one of the EAS plans (i.e., Production or Enterprise).",
1512            "args": [
1513              {
1514                "name": "accountID",
1515                "description": null,
1516                "type": {
1517                  "kind": "NON_NULL",
1518                  "name": null,
1519                  "ofType": {
1520                    "kind": "SCALAR",
1521                    "name": "ID",
1522                    "ofType": null
1523                  }
1524                },
1525                "defaultValue": null,
1526                "isDeprecated": false,
1527                "deprecationReason": null
1528              },
1529              {
1530                "name": "couponCode",
1531                "description": null,
1532                "type": {
1533                  "kind": "SCALAR",
1534                  "name": "String",
1535                  "ofType": null
1536                },
1537                "defaultValue": null,
1538                "isDeprecated": false,
1539                "deprecationReason": null
1540              },
1541              {
1542                "name": "newPlanIdentifier",
1543                "description": null,
1544                "type": {
1545                  "kind": "NON_NULL",
1546                  "name": null,
1547                  "ofType": {
1548                    "kind": "SCALAR",
1549                    "name": "String",
1550                    "ofType": null
1551                  }
1552                },
1553                "defaultValue": null,
1554                "isDeprecated": false,
1555                "deprecationReason": null
1556              }
1557            ],
1558            "type": {
1559              "kind": "NON_NULL",
1560              "name": null,
1561              "ofType": {
1562                "kind": "OBJECT",
1563                "name": "Account",
1564                "ofType": null
1565              }
1566            },
1567            "isDeprecated": false,
1568            "deprecationReason": null
1569          },
1570          {
1571            "name": "grantActorPermissions",
1572            "description": "Add specified account Permissions for Actor. Actor must already have at least one permission on the account.",
1573            "args": [
1574              {
1575                "name": "accountID",
1576                "description": null,
1577                "type": {
1578                  "kind": "NON_NULL",
1579                  "name": null,
1580                  "ofType": {
1581                    "kind": "SCALAR",
1582                    "name": "ID",
1583                    "ofType": null
1584                  }
1585                },
1586                "defaultValue": null,
1587                "isDeprecated": false,
1588                "deprecationReason": null
1589              },
1590              {
1591                "name": "actorID",
1592                "description": null,
1593                "type": {
1594                  "kind": "NON_NULL",
1595                  "name": null,
1596                  "ofType": {
1597                    "kind": "SCALAR",
1598                    "name": "ID",
1599                    "ofType": null
1600                  }
1601                },
1602                "defaultValue": null,
1603                "isDeprecated": false,
1604                "deprecationReason": null
1605              },
1606              {
1607                "name": "permissions",
1608                "description": null,
1609                "type": {
1610                  "kind": "LIST",
1611                  "name": null,
1612                  "ofType": {
1613                    "kind": "ENUM",
1614                    "name": "Permission",
1615                    "ofType": null
1616                  }
1617                },
1618                "defaultValue": null,
1619                "isDeprecated": false,
1620                "deprecationReason": null
1621              }
1622            ],
1623            "type": {
1624              "kind": "NON_NULL",
1625              "name": null,
1626              "ofType": {
1627                "kind": "OBJECT",
1628                "name": "Account",
1629                "ofType": null
1630              }
1631            },
1632            "isDeprecated": false,
1633            "deprecationReason": null
1634          },
1635          {
1636            "name": "rename",
1637            "description": "Rename this account and the primary user's username if this account is a personal account",
1638            "args": [
1639              {
1640                "name": "accountID",
1641                "description": null,
1642                "type": {
1643                  "kind": "NON_NULL",
1644                  "name": null,
1645                  "ofType": {
1646                    "kind": "SCALAR",
1647                    "name": "ID",
1648                    "ofType": null
1649                  }
1650                },
1651                "defaultValue": null,
1652                "isDeprecated": false,
1653                "deprecationReason": null
1654              },
1655              {
1656                "name": "newName",
1657                "description": null,
1658                "type": {
1659                  "kind": "NON_NULL",
1660                  "name": null,
1661                  "ofType": {
1662                    "kind": "SCALAR",
1663                    "name": "String",
1664                    "ofType": null
1665                  }
1666                },
1667                "defaultValue": null,
1668                "isDeprecated": false,
1669                "deprecationReason": null
1670              }
1671            ],
1672            "type": {
1673              "kind": "NON_NULL",
1674              "name": null,
1675              "ofType": {
1676                "kind": "OBJECT",
1677                "name": "Account",
1678                "ofType": null
1679              }
1680            },
1681            "isDeprecated": false,
1682            "deprecationReason": null
1683          },
1684          {
1685            "name": "requestRefund",
1686            "description": "Requests a refund for the specified charge. Returns true if auto-refund was possible, otherwise requests a manual refund from support and returns false.",
1687            "args": [
1688              {
1689                "name": "accountID",
1690                "description": null,
1691                "type": {
1692                  "kind": "NON_NULL",
1693                  "name": null,
1694                  "ofType": {
1695                    "kind": "SCALAR",
1696                    "name": "ID",
1697                    "ofType": null
1698                  }
1699                },
1700                "defaultValue": null,
1701                "isDeprecated": false,
1702                "deprecationReason": null
1703              },
1704              {
1705                "name": "chargeID",
1706                "description": null,
1707                "type": {
1708                  "kind": "NON_NULL",
1709                  "name": null,
1710                  "ofType": {
1711                    "kind": "SCALAR",
1712                    "name": "ID",
1713                    "ofType": null
1714                  }
1715                },
1716                "defaultValue": null,
1717                "isDeprecated": false,
1718                "deprecationReason": null
1719              },
1720              {
1721                "name": "description",
1722                "description": null,
1723                "type": {
1724                  "kind": "SCALAR",
1725                  "name": "String",
1726                  "ofType": null
1727                },
1728                "defaultValue": null,
1729                "isDeprecated": false,
1730                "deprecationReason": null
1731              },
1732              {
1733                "name": "reason",
1734                "description": null,
1735                "type": {
1736                  "kind": "SCALAR",
1737                  "name": "String",
1738                  "ofType": null
1739                },
1740                "defaultValue": null,
1741                "isDeprecated": false,
1742                "deprecationReason": null
1743              }
1744            ],
1745            "type": {
1746              "kind": "NON_NULL",
1747              "name": null,
1748              "ofType": {
1749                "kind": "SCALAR",
1750                "name": "Boolean",
1751                "ofType": null
1752              }
1753            },
1754            "isDeprecated": false,
1755            "deprecationReason": null
1756          },
1757          {
1758            "name": "revokeActorPermissions",
1759            "description": "Revoke specified Permissions for Actor. Actor must already have at least one permission on the account.",
1760            "args": [
1761              {
1762                "name": "accountID",
1763                "description": null,
1764                "type": {
1765                  "kind": "NON_NULL",
1766                  "name": null,
1767                  "ofType": {
1768                    "kind": "SCALAR",
1769                    "name": "ID",
1770                    "ofType": null
1771                  }
1772                },
1773                "defaultValue": null,
1774                "isDeprecated": false,
1775                "deprecationReason": null
1776              },
1777              {
1778                "name": "actorID",
1779                "description": null,
1780                "type": {
1781                  "kind": "NON_NULL",
1782                  "name": null,
1783                  "ofType": {
1784                    "kind": "SCALAR",
1785                    "name": "ID",
1786                    "ofType": null
1787                  }
1788                },
1789                "defaultValue": null,
1790                "isDeprecated": false,
1791                "deprecationReason": null
1792              },
1793              {
1794                "name": "permissions",
1795                "description": null,
1796                "type": {
1797                  "kind": "LIST",
1798                  "name": null,
1799                  "ofType": {
1800                    "kind": "ENUM",
1801                    "name": "Permission",
1802                    "ofType": null
1803                  }
1804                },
1805                "defaultValue": null,
1806                "isDeprecated": false,
1807                "deprecationReason": null
1808              }
1809            ],
1810            "type": {
1811              "kind": "NON_NULL",
1812              "name": null,
1813              "ofType": {
1814                "kind": "OBJECT",
1815                "name": "Account",
1816                "ofType": null
1817              }
1818            },
1819            "isDeprecated": false,
1820            "deprecationReason": null
1821          },
1822          {
1823            "name": "setBuildAutoRenew",
1824            "description": "Update setting to purchase new build packs when the current one is consumed",
1825            "args": [
1826              {
1827                "name": "accountName",
1828                "description": null,
1829                "type": {
1830                  "kind": "NON_NULL",
1831                  "name": null,
1832                  "ofType": {
1833                    "kind": "SCALAR",
1834                    "name": "ID",
1835                    "ofType": null
1836                  }
1837                },
1838                "defaultValue": null,
1839                "isDeprecated": false,
1840                "deprecationReason": null
1841              },
1842              {
1843                "name": "autoRenew",
1844                "description": null,
1845                "type": {
1846                  "kind": "SCALAR",
1847                  "name": "Boolean",
1848                  "ofType": null
1849                },
1850                "defaultValue": null,
1851                "isDeprecated": false,
1852                "deprecationReason": null
1853              }
1854            ],
1855            "type": {
1856              "kind": "OBJECT",
1857              "name": "Account",
1858              "ofType": null
1859            },
1860            "isDeprecated": true,
1861            "deprecationReason": "Build packs are no longer supported"
1862          },
1863          {
1864            "name": "setPaymentSource",
1865            "description": "Set payment details",
1866            "args": [
1867              {
1868                "name": "accountName",
1869                "description": null,
1870                "type": {
1871                  "kind": "NON_NULL",
1872                  "name": null,
1873                  "ofType": {
1874                    "kind": "SCALAR",
1875                    "name": "ID",
1876                    "ofType": null
1877                  }
1878                },
1879                "defaultValue": null,
1880                "isDeprecated": false,
1881                "deprecationReason": null
1882              },
1883              {
1884                "name": "paymentSource",
1885                "description": null,
1886                "type": {
1887                  "kind": "NON_NULL",
1888                  "name": null,
1889                  "ofType": {
1890                    "kind": "SCALAR",
1891                    "name": "ID",
1892                    "ofType": null
1893                  }
1894                },
1895                "defaultValue": null,
1896                "isDeprecated": false,
1897                "deprecationReason": null
1898              }
1899            ],
1900            "type": {
1901              "kind": "NON_NULL",
1902              "name": null,
1903              "ofType": {
1904                "kind": "OBJECT",
1905                "name": "Account",
1906                "ofType": null
1907              }
1908            },
1909            "isDeprecated": false,
1910            "deprecationReason": null
1911          },
1912          {
1913            "name": "setPushSecurityEnabled",
1914            "description": "Require authorization to send push notifications for experiences owned by this account",
1915            "args": [
1916              {
1917                "name": "accountID",
1918                "description": null,
1919                "type": {
1920                  "kind": "NON_NULL",
1921                  "name": null,
1922                  "ofType": {
1923                    "kind": "SCALAR",
1924                    "name": "ID",
1925                    "ofType": null
1926                  }
1927                },
1928                "defaultValue": null,
1929                "isDeprecated": false,
1930                "deprecationReason": null
1931              },
1932              {
1933                "name": "pushSecurityEnabled",
1934                "description": null,
1935                "type": {
1936                  "kind": "NON_NULL",
1937                  "name": null,
1938                  "ofType": {
1939                    "kind": "SCALAR",
1940                    "name": "Boolean",
1941                    "ofType": null
1942                  }
1943                },
1944                "defaultValue": null,
1945                "isDeprecated": false,
1946                "deprecationReason": null
1947              }
1948            ],
1949            "type": {
1950              "kind": "NON_NULL",
1951              "name": null,
1952              "ofType": {
1953                "kind": "OBJECT",
1954                "name": "Account",
1955                "ofType": null
1956              }
1957            },
1958            "isDeprecated": false,
1959            "deprecationReason": null
1960          },
1961          {
1962            "name": "subscribeToProduct",
1963            "description": "Add a subscription",
1964            "args": [
1965              {
1966                "name": "accountName",
1967                "description": null,
1968                "type": {
1969                  "kind": "NON_NULL",
1970                  "name": null,
1971                  "ofType": {
1972                    "kind": "SCALAR",
1973                    "name": "ID",
1974                    "ofType": null
1975                  }
1976                },
1977                "defaultValue": null,
1978                "isDeprecated": false,
1979                "deprecationReason": null
1980              },
1981              {
1982                "name": "paymentSource",
1983                "description": null,
1984                "type": {
1985                  "kind": "NON_NULL",
1986                  "name": null,
1987                  "ofType": {
1988                    "kind": "SCALAR",
1989                    "name": "ID",
1990                    "ofType": null
1991                  }
1992                },
1993                "defaultValue": null,
1994                "isDeprecated": false,
1995                "deprecationReason": null
1996              },
1997              {
1998                "name": "productId",
1999                "description": null,
2000                "type": {
2001                  "kind": "NON_NULL",
2002                  "name": null,
2003                  "ofType": {
2004                    "kind": "SCALAR",
2005                    "name": "ID",
2006                    "ofType": null
2007                  }
2008                },
2009                "defaultValue": null,
2010                "isDeprecated": false,
2011                "deprecationReason": null
2012              }
2013            ],
2014            "type": {
2015              "kind": "NON_NULL",
2016              "name": null,
2017              "ofType": {
2018                "kind": "OBJECT",
2019                "name": "Account",
2020                "ofType": null
2021              }
2022            },
2023            "isDeprecated": false,
2024            "deprecationReason": null
2025          }
2026        ],
2027        "inputFields": null,
2028        "interfaces": [],
2029        "enumValues": null,
2030        "possibleTypes": null
2031      },
2032      {
2033        "kind": "OBJECT",
2034        "name": "AccountQuery",
2035        "description": null,
2036        "fields": [
2037          {
2038            "name": "byId",
2039            "description": "Query an Account by ID",
2040            "args": [
2041              {
2042                "name": "accountId",
2043                "description": "Account id to use to look up account",
2044                "type": {
2045                  "kind": "NON_NULL",
2046                  "name": null,
2047                  "ofType": {
2048                    "kind": "SCALAR",
2049                    "name": "String",
2050                    "ofType": null
2051                  }
2052                },
2053                "defaultValue": null,
2054                "isDeprecated": false,
2055                "deprecationReason": null
2056              }
2057            ],
2058            "type": {
2059              "kind": "NON_NULL",
2060              "name": null,
2061              "ofType": {
2062                "kind": "OBJECT",
2063                "name": "Account",
2064                "ofType": null
2065              }
2066            },
2067            "isDeprecated": false,
2068            "deprecationReason": null
2069          },
2070          {
2071            "name": "byName",
2072            "description": "Query an Account by name",
2073            "args": [
2074              {
2075                "name": "accountName",
2076                "description": "Account name to use to look up account",
2077                "type": {
2078                  "kind": "NON_NULL",
2079                  "name": null,
2080                  "ofType": {
2081                    "kind": "SCALAR",
2082                    "name": "String",
2083                    "ofType": null
2084                  }
2085                },
2086                "defaultValue": null,
2087                "isDeprecated": false,
2088                "deprecationReason": null
2089              }
2090            ],
2091            "type": {
2092              "kind": "NON_NULL",
2093              "name": null,
2094              "ofType": {
2095                "kind": "OBJECT",
2096                "name": "Account",
2097                "ofType": null
2098              }
2099            },
2100            "isDeprecated": false,
2101            "deprecationReason": null
2102          }
2103        ],
2104        "inputFields": null,
2105        "interfaces": [],
2106        "enumValues": null,
2107        "possibleTypes": null
2108      },
2109      {
2110        "kind": "OBJECT",
2111        "name": "AccountUsageMetric",
2112        "description": null,
2113        "fields": [
2114          {
2115            "name": "id",
2116            "description": null,
2117            "args": [],
2118            "type": {
2119              "kind": "NON_NULL",
2120              "name": null,
2121              "ofType": {
2122                "kind": "SCALAR",
2123                "name": "ID",
2124                "ofType": null
2125              }
2126            },
2127            "isDeprecated": false,
2128            "deprecationReason": null
2129          },
2130          {
2131            "name": "metricType",
2132            "description": null,
2133            "args": [],
2134            "type": {
2135              "kind": "NON_NULL",
2136              "name": null,
2137              "ofType": {
2138                "kind": "ENUM",
2139                "name": "UsageMetricType",
2140                "ofType": null
2141              }
2142            },
2143            "isDeprecated": false,
2144            "deprecationReason": null
2145          },
2146          {
2147            "name": "serviceMetric",
2148            "description": null,
2149            "args": [],
2150            "type": {
2151              "kind": "NON_NULL",
2152              "name": null,
2153              "ofType": {
2154                "kind": "ENUM",
2155                "name": "EASServiceMetric",
2156                "ofType": null
2157              }
2158            },
2159            "isDeprecated": false,
2160            "deprecationReason": null
2161          },
2162          {
2163            "name": "timestamp",
2164            "description": null,
2165            "args": [],
2166            "type": {
2167              "kind": "NON_NULL",
2168              "name": null,
2169              "ofType": {
2170                "kind": "SCALAR",
2171                "name": "DateTime",
2172                "ofType": null
2173              }
2174            },
2175            "isDeprecated": false,
2176            "deprecationReason": null
2177          },
2178          {
2179            "name": "value",
2180            "description": null,
2181            "args": [],
2182            "type": {
2183              "kind": "NON_NULL",
2184              "name": null,
2185              "ofType": {
2186                "kind": "SCALAR",
2187                "name": "Float",
2188                "ofType": null
2189              }
2190            },
2191            "isDeprecated": false,
2192            "deprecationReason": null
2193          }
2194        ],
2195        "inputFields": null,
2196        "interfaces": [],
2197        "enumValues": null,
2198        "possibleTypes": null
2199      },
2200      {
2201        "kind": "OBJECT",
2202        "name": "AccountUsageMetricAndCost",
2203        "description": null,
2204        "fields": [
2205          {
2206            "name": "id",
2207            "description": null,
2208            "args": [],
2209            "type": {
2210              "kind": "NON_NULL",
2211              "name": null,
2212              "ofType": {
2213                "kind": "SCALAR",
2214                "name": "ID",
2215                "ofType": null
2216              }
2217            },
2218            "isDeprecated": false,
2219            "deprecationReason": null
2220          },
2221          {
2222            "name": "limit",
2223            "description": "The limit, in units, allowed by this plan",
2224            "args": [],
2225            "type": {
2226              "kind": "NON_NULL",
2227              "name": null,
2228              "ofType": {
2229                "kind": "SCALAR",
2230                "name": "Float",
2231                "ofType": null
2232              }
2233            },
2234            "isDeprecated": false,
2235            "deprecationReason": null
2236          },
2237          {
2238            "name": "metricType",
2239            "description": null,
2240            "args": [],
2241            "type": {
2242              "kind": "NON_NULL",
2243              "name": null,
2244              "ofType": {
2245                "kind": "ENUM",
2246                "name": "UsageMetricType",
2247                "ofType": null
2248              }
2249            },
2250            "isDeprecated": false,
2251            "deprecationReason": null
2252          },
2253          {
2254            "name": "serviceMetric",
2255            "description": null,
2256            "args": [],
2257            "type": {
2258              "kind": "NON_NULL",
2259              "name": null,
2260              "ofType": {
2261                "kind": "ENUM",
2262                "name": "EASServiceMetric",
2263                "ofType": null
2264              }
2265            },
2266            "isDeprecated": false,
2267            "deprecationReason": null
2268          },
2269          {
2270            "name": "totalCost",
2271            "description": "Total cost of this particular metric, in cents",
2272            "args": [],
2273            "type": {
2274              "kind": "NON_NULL",
2275              "name": null,
2276              "ofType": {
2277                "kind": "SCALAR",
2278                "name": "Float",
2279                "ofType": null
2280              }
2281            },
2282            "isDeprecated": false,
2283            "deprecationReason": null
2284          },
2285          {
2286            "name": "value",
2287            "description": null,
2288            "args": [],
2289            "type": {
2290              "kind": "NON_NULL",
2291              "name": null,
2292              "ofType": {
2293                "kind": "SCALAR",
2294                "name": "Float",
2295                "ofType": null
2296              }
2297            },
2298            "isDeprecated": false,
2299            "deprecationReason": null
2300          }
2301        ],
2302        "inputFields": null,
2303        "interfaces": [],
2304        "enumValues": null,
2305        "possibleTypes": null
2306      },
2307      {
2308        "kind": "OBJECT",
2309        "name": "AccountUsageMetrics",
2310        "description": null,
2311        "fields": [
2312          {
2313            "name": "byBillingPeriod",
2314            "description": null,
2315            "args": [
2316              {
2317                "name": "date",
2318                "description": null,
2319                "type": {
2320                  "kind": "NON_NULL",
2321                  "name": null,
2322                  "ofType": {
2323                    "kind": "SCALAR",
2324                    "name": "DateTime",
2325                    "ofType": null
2326                  }
2327                },
2328                "defaultValue": null,
2329                "isDeprecated": false,
2330                "deprecationReason": null
2331              }
2332            ],
2333            "type": {
2334              "kind": "NON_NULL",
2335              "name": null,
2336              "ofType": {
2337                "kind": "OBJECT",
2338                "name": "UsageMetricTotal",
2339                "ofType": null
2340              }
2341            },
2342            "isDeprecated": false,
2343            "deprecationReason": null
2344          },
2345          {
2346            "name": "metricsForServiceMetric",
2347            "description": null,
2348            "args": [
2349              {
2350                "name": "granularity",
2351                "description": null,
2352                "type": {
2353                  "kind": "NON_NULL",
2354                  "name": null,
2355                  "ofType": {
2356                    "kind": "ENUM",
2357                    "name": "UsageMetricsGranularity",
2358                    "ofType": null
2359                  }
2360                },
2361                "defaultValue": null,
2362                "isDeprecated": false,
2363                "deprecationReason": null
2364              },
2365              {
2366                "name": "serviceMetric",
2367                "description": null,
2368                "type": {
2369                  "kind": "NON_NULL",
2370                  "name": null,
2371                  "ofType": {
2372                    "kind": "ENUM",
2373                    "name": "EASServiceMetric",
2374                    "ofType": null
2375                  }
2376                },
2377                "defaultValue": null,
2378                "isDeprecated": false,
2379                "deprecationReason": null
2380              },
2381              {
2382                "name": "timespan",
2383                "description": null,
2384                "type": {
2385                  "kind": "NON_NULL",
2386                  "name": null,
2387                  "ofType": {
2388                    "kind": "INPUT_OBJECT",
2389                    "name": "UsageMetricsTimespan",
2390                    "ofType": null
2391                  }
2392                },
2393                "defaultValue": null,
2394                "isDeprecated": false,
2395                "deprecationReason": null
2396              }
2397            ],
2398            "type": {
2399              "kind": "NON_NULL",
2400              "name": null,
2401              "ofType": {
2402                "kind": "LIST",
2403                "name": null,
2404                "ofType": {
2405                  "kind": "NON_NULL",
2406                  "name": null,
2407                  "ofType": {
2408                    "kind": "OBJECT",
2409                    "name": "AccountUsageMetric",
2410                    "ofType": null
2411                  }
2412                }
2413              }
2414            },
2415            "isDeprecated": false,
2416            "deprecationReason": null
2417          }
2418        ],
2419        "inputFields": null,
2420        "interfaces": [],
2421        "enumValues": null,
2422        "possibleTypes": null
2423      },
2424      {
2425        "kind": "INTERFACE",
2426        "name": "ActivityTimelineProjectActivity",
2427        "description": null,
2428        "fields": [
2429          {
2430            "name": "activityTimestamp",
2431            "description": null,
2432            "args": [],
2433            "type": {
2434              "kind": "NON_NULL",
2435              "name": null,
2436              "ofType": {
2437                "kind": "SCALAR",
2438                "name": "DateTime",
2439                "ofType": null
2440              }
2441            },
2442            "isDeprecated": false,
2443            "deprecationReason": null
2444          },
2445          {
2446            "name": "actor",
2447            "description": null,
2448            "args": [],
2449            "type": {
2450              "kind": "INTERFACE",
2451              "name": "Actor",
2452              "ofType": null
2453            },
2454            "isDeprecated": false,
2455            "deprecationReason": null
2456          },
2457          {
2458            "name": "id",
2459            "description": null,
2460            "args": [],
2461            "type": {
2462              "kind": "NON_NULL",
2463              "name": null,
2464              "ofType": {
2465                "kind": "SCALAR",
2466                "name": "ID",
2467                "ofType": null
2468              }
2469            },
2470            "isDeprecated": false,
2471            "deprecationReason": null
2472          }
2473        ],
2474        "inputFields": null,
2475        "interfaces": [],
2476        "enumValues": null,
2477        "possibleTypes": [
2478          {
2479            "kind": "OBJECT",
2480            "name": "Build",
2481            "ofType": null
2482          },
2483          {
2484            "kind": "OBJECT",
2485            "name": "BuildJob",
2486            "ofType": null
2487          },
2488          {
2489            "kind": "OBJECT",
2490            "name": "Submission",
2491            "ofType": null
2492          },
2493          {
2494            "kind": "OBJECT",
2495            "name": "Update",
2496            "ofType": null
2497          }
2498        ]
2499      },
2500      {
2501        "kind": "ENUM",
2502        "name": "ActivityTimelineProjectActivityType",
2503        "description": null,
2504        "fields": null,
2505        "inputFields": null,
2506        "interfaces": null,
2507        "enumValues": [
2508          {
2509            "name": "BUILD",
2510            "description": null,
2511            "isDeprecated": false,
2512            "deprecationReason": null
2513          },
2514          {
2515            "name": "BUILD_JOB",
2516            "description": null,
2517            "isDeprecated": false,
2518            "deprecationReason": null
2519          },
2520          {
2521            "name": "SUBMISSION",
2522            "description": null,
2523            "isDeprecated": false,
2524            "deprecationReason": null
2525          },
2526          {
2527            "name": "UPDATE",
2528            "description": null,
2529            "isDeprecated": false,
2530            "deprecationReason": null
2531          }
2532        ],
2533        "possibleTypes": null
2534      },
2535      {
2536        "kind": "INTERFACE",
2537        "name": "Actor",
2538        "description": "A user or robot that can authenticate with Expo services and be a member of accounts.",
2539        "fields": [
2540          {
2541            "name": "accessTokens",
2542            "description": "Access Tokens belonging to this actor",
2543            "args": [],
2544            "type": {
2545              "kind": "NON_NULL",
2546              "name": null,
2547              "ofType": {
2548                "kind": "LIST",
2549                "name": null,
2550                "ofType": {
2551                  "kind": "NON_NULL",
2552                  "name": null,
2553                  "ofType": {
2554                    "kind": "OBJECT",
2555                    "name": "AccessToken",
2556                    "ofType": null
2557                  }
2558                }
2559              }
2560            },
2561            "isDeprecated": false,
2562            "deprecationReason": null
2563          },
2564          {
2565            "name": "accounts",
2566            "description": "Associated accounts",
2567            "args": [],
2568            "type": {
2569              "kind": "NON_NULL",
2570              "name": null,
2571              "ofType": {
2572                "kind": "LIST",
2573                "name": null,
2574                "ofType": {
2575                  "kind": "NON_NULL",
2576                  "name": null,
2577                  "ofType": {
2578                    "kind": "OBJECT",
2579                    "name": "Account",
2580                    "ofType": null
2581                  }
2582                }
2583              }
2584            },
2585            "isDeprecated": false,
2586            "deprecationReason": null
2587          },
2588          {
2589            "name": "created",
2590            "description": null,
2591            "args": [],
2592            "type": {
2593              "kind": "NON_NULL",
2594              "name": null,
2595              "ofType": {
2596                "kind": "SCALAR",
2597                "name": "DateTime",
2598                "ofType": null
2599              }
2600            },
2601            "isDeprecated": false,
2602            "deprecationReason": null
2603          },
2604          {
2605            "name": "displayName",
2606            "description": "Best-effort human readable name for this actor for use in user interfaces during action attribution.\nFor example, when displaying a sentence indicating that actor X created a build or published an update.",
2607            "args": [],
2608            "type": {
2609              "kind": "NON_NULL",
2610              "name": null,
2611              "ofType": {
2612                "kind": "SCALAR",
2613                "name": "String",
2614                "ofType": null
2615              }
2616            },
2617            "isDeprecated": false,
2618            "deprecationReason": null
2619          },
2620          {
2621            "name": "featureGates",
2622            "description": "Server feature gate values for this actor, optionally filtering by desired gates.\nOnly resolves for the viewer.",
2623            "args": [
2624              {
2625                "name": "filter",
2626                "description": null,
2627                "type": {
2628                  "kind": "LIST",
2629                  "name": null,
2630                  "ofType": {
2631                    "kind": "NON_NULL",
2632                    "name": null,
2633                    "ofType": {
2634                      "kind": "SCALAR",
2635                      "name": "String",
2636                      "ofType": null
2637                    }
2638                  }
2639                },
2640                "defaultValue": null,
2641                "isDeprecated": false,
2642                "deprecationReason": null
2643              }
2644            ],
2645            "type": {
2646              "kind": "NON_NULL",
2647              "name": null,
2648              "ofType": {
2649                "kind": "SCALAR",
2650                "name": "JSONObject",
2651                "ofType": null
2652              }
2653            },
2654            "isDeprecated": false,
2655            "deprecationReason": null
2656          },
2657          {
2658            "name": "firstName",
2659            "description": null,
2660            "args": [],
2661            "type": {
2662              "kind": "SCALAR",
2663              "name": "String",
2664              "ofType": null
2665            },
2666            "isDeprecated": false,
2667            "deprecationReason": null
2668          },
2669          {
2670            "name": "id",
2671            "description": null,
2672            "args": [],
2673            "type": {
2674              "kind": "NON_NULL",
2675              "name": null,
2676              "ofType": {
2677                "kind": "SCALAR",
2678                "name": "ID",
2679                "ofType": null
2680              }
2681            },
2682            "isDeprecated": false,
2683            "deprecationReason": null
2684          },
2685          {
2686            "name": "isExpoAdmin",
2687            "description": null,
2688            "args": [],
2689            "type": {
2690              "kind": "NON_NULL",
2691              "name": null,
2692              "ofType": {
2693                "kind": "SCALAR",
2694                "name": "Boolean",
2695                "ofType": null
2696              }
2697            },
2698            "isDeprecated": false,
2699            "deprecationReason": null
2700          }
2701        ],
2702        "inputFields": null,
2703        "interfaces": [],
2704        "enumValues": null,
2705        "possibleTypes": [
2706          {
2707            "kind": "OBJECT",
2708            "name": "Robot",
2709            "ofType": null
2710          },
2711          {
2712            "kind": "OBJECT",
2713            "name": "User",
2714            "ofType": null
2715          }
2716        ]
2717      },
2718      {
2719        "kind": "OBJECT",
2720        "name": "ActorQuery",
2721        "description": null,
2722        "fields": [
2723          {
2724            "name": "byId",
2725            "description": "Query an Actor by ID",
2726            "args": [
2727              {
2728                "name": "id",
2729                "description": null,
2730                "type": {
2731                  "kind": "NON_NULL",
2732                  "name": null,
2733                  "ofType": {
2734                    "kind": "SCALAR",
2735                    "name": "ID",
2736                    "ofType": null
2737                  }
2738                },
2739                "defaultValue": null,
2740                "isDeprecated": false,
2741                "deprecationReason": null
2742              }
2743            ],
2744            "type": {
2745              "kind": "NON_NULL",
2746              "name": null,
2747              "ofType": {
2748                "kind": "INTERFACE",
2749                "name": "Actor",
2750                "ofType": null
2751              }
2752            },
2753            "isDeprecated": false,
2754            "deprecationReason": null
2755          }
2756        ],
2757        "inputFields": null,
2758        "interfaces": [],
2759        "enumValues": null,
2760        "possibleTypes": null
2761      },
2762      {
2763        "kind": "INPUT_OBJECT",
2764        "name": "AddUserInput",
2765        "description": null,
2766        "fields": null,
2767        "inputFields": [
2768          {
2769            "name": "audience",
2770            "description": null,
2771            "type": {
2772              "kind": "ENUM",
2773              "name": "MailchimpAudience",
2774              "ofType": null
2775            },
2776            "defaultValue": "EXPO_DEVELOPERS",
2777            "isDeprecated": false,
2778            "deprecationReason": null
2779          },
2780          {
2781            "name": "email",
2782            "description": null,
2783            "type": {
2784              "kind": "NON_NULL",
2785              "name": null,
2786              "ofType": {
2787                "kind": "SCALAR",
2788                "name": "String",
2789                "ofType": null
2790              }
2791            },
2792            "defaultValue": null,
2793            "isDeprecated": false,
2794            "deprecationReason": null
2795          },
2796          {
2797            "name": "tags",
2798            "description": null,
2799            "type": {
2800              "kind": "LIST",
2801              "name": null,
2802              "ofType": {
2803                "kind": "NON_NULL",
2804                "name": null,
2805                "ofType": {
2806                  "kind": "ENUM",
2807                  "name": "MailchimpTag",
2808                  "ofType": null
2809                }
2810              }
2811            },
2812            "defaultValue": null,
2813            "isDeprecated": false,
2814            "deprecationReason": null
2815          }
2816        ],
2817        "interfaces": null,
2818        "enumValues": null,
2819        "possibleTypes": null
2820      },
2821      {
2822        "kind": "OBJECT",
2823        "name": "AddUserPayload",
2824        "description": null,
2825        "fields": [
2826          {
2827            "name": "email_address",
2828            "description": null,
2829            "args": [],
2830            "type": {
2831              "kind": "SCALAR",
2832              "name": "String",
2833              "ofType": null
2834            },
2835            "isDeprecated": false,
2836            "deprecationReason": null
2837          },
2838          {
2839            "name": "id",
2840            "description": null,
2841            "args": [],
2842            "type": {
2843              "kind": "SCALAR",
2844              "name": "String",
2845              "ofType": null
2846            },
2847            "isDeprecated": false,
2848            "deprecationReason": null
2849          },
2850          {
2851            "name": "list_id",
2852            "description": null,
2853            "args": [],
2854            "type": {
2855              "kind": "SCALAR",
2856              "name": "String",
2857              "ofType": null
2858            },
2859            "isDeprecated": false,
2860            "deprecationReason": null
2861          },
2862          {
2863            "name": "status",
2864            "description": null,
2865            "args": [],
2866            "type": {
2867              "kind": "SCALAR",
2868              "name": "String",
2869              "ofType": null
2870            },
2871            "isDeprecated": false,
2872            "deprecationReason": null
2873          },
2874          {
2875            "name": "tags",
2876            "description": null,
2877            "args": [],
2878            "type": {
2879              "kind": "LIST",
2880              "name": null,
2881              "ofType": {
2882                "kind": "NON_NULL",
2883                "name": null,
2884                "ofType": {
2885                  "kind": "OBJECT",
2886                  "name": "MailchimpTagPayload",
2887                  "ofType": null
2888                }
2889              }
2890            },
2891            "isDeprecated": false,
2892            "deprecationReason": null
2893          },
2894          {
2895            "name": "timestamp_signup",
2896            "description": null,
2897            "args": [],
2898            "type": {
2899              "kind": "SCALAR",
2900              "name": "String",
2901              "ofType": null
2902            },
2903            "isDeprecated": false,
2904            "deprecationReason": null
2905          }
2906        ],
2907        "inputFields": null,
2908        "interfaces": [],
2909        "enumValues": null,
2910        "possibleTypes": null
2911      },
2912      {
2913        "kind": "OBJECT",
2914        "name": "AddonDetails",
2915        "description": null,
2916        "fields": [
2917          {
2918            "name": "id",
2919            "description": null,
2920            "args": [],
2921            "type": {
2922              "kind": "NON_NULL",
2923              "name": null,
2924              "ofType": {
2925                "kind": "SCALAR",
2926                "name": "ID",
2927                "ofType": null
2928              }
2929            },
2930            "isDeprecated": false,
2931            "deprecationReason": null
2932          },
2933          {
2934            "name": "name",
2935            "description": null,
2936            "args": [],
2937            "type": {
2938              "kind": "NON_NULL",
2939              "name": null,
2940              "ofType": {
2941                "kind": "SCALAR",
2942                "name": "String",
2943                "ofType": null
2944              }
2945            },
2946            "isDeprecated": false,
2947            "deprecationReason": null
2948          },
2949          {
2950            "name": "nextInvoice",
2951            "description": null,
2952            "args": [],
2953            "type": {
2954              "kind": "SCALAR",
2955              "name": "DateTime",
2956              "ofType": null
2957            },
2958            "isDeprecated": false,
2959            "deprecationReason": null
2960          },
2961          {
2962            "name": "planId",
2963            "description": null,
2964            "args": [],
2965            "type": {
2966              "kind": "NON_NULL",
2967              "name": null,
2968              "ofType": {
2969                "kind": "SCALAR",
2970                "name": "String",
2971                "ofType": null
2972              }
2973            },
2974            "isDeprecated": false,
2975            "deprecationReason": null
2976          },
2977          {
2978            "name": "willCancel",
2979            "description": null,
2980            "args": [],
2981            "type": {
2982              "kind": "SCALAR",
2983              "name": "Boolean",
2984              "ofType": null
2985            },
2986            "isDeprecated": false,
2987            "deprecationReason": null
2988          }
2989        ],
2990        "inputFields": null,
2991        "interfaces": [],
2992        "enumValues": null,
2993        "possibleTypes": null
2994      },
2995      {
2996        "kind": "OBJECT",
2997        "name": "Address",
2998        "description": null,
2999        "fields": [
3000          {
3001            "name": "city",
3002            "description": null,
3003            "args": [],
3004            "type": {
3005              "kind": "SCALAR",
3006              "name": "String",
3007              "ofType": null
3008            },
3009            "isDeprecated": false,
3010            "deprecationReason": null
3011          },
3012          {
3013            "name": "country",
3014            "description": null,
3015            "args": [],
3016            "type": {
3017              "kind": "SCALAR",
3018              "name": "String",
3019              "ofType": null
3020            },
3021            "isDeprecated": false,
3022            "deprecationReason": null
3023          },
3024          {
3025            "name": "line1",
3026            "description": null,
3027            "args": [],
3028            "type": {
3029              "kind": "SCALAR",
3030              "name": "String",
3031              "ofType": null
3032            },
3033            "isDeprecated": false,
3034            "deprecationReason": null
3035          },
3036          {
3037            "name": "state",
3038            "description": null,
3039            "args": [],
3040            "type": {
3041              "kind": "SCALAR",
3042              "name": "String",
3043              "ofType": null
3044            },
3045            "isDeprecated": false,
3046            "deprecationReason": null
3047          },
3048          {
3049            "name": "zip",
3050            "description": null,
3051            "args": [],
3052            "type": {
3053              "kind": "SCALAR",
3054              "name": "String",
3055              "ofType": null
3056            },
3057            "isDeprecated": false,
3058            "deprecationReason": null
3059          }
3060        ],
3061        "inputFields": null,
3062        "interfaces": [],
3063        "enumValues": null,
3064        "possibleTypes": null
3065      },
3066      {
3067        "kind": "OBJECT",
3068        "name": "AndroidAppBuildCredentials",
3069        "description": null,
3070        "fields": [
3071          {
3072            "name": "androidKeystore",
3073            "description": null,
3074            "args": [],
3075            "type": {
3076              "kind": "OBJECT",
3077              "name": "AndroidKeystore",
3078              "ofType": null
3079            },
3080            "isDeprecated": false,
3081            "deprecationReason": null
3082          },
3083          {
3084            "name": "id",
3085            "description": null,
3086            "args": [],
3087            "type": {
3088              "kind": "NON_NULL",
3089              "name": null,
3090              "ofType": {
3091                "kind": "SCALAR",
3092                "name": "ID",
3093                "ofType": null
3094              }
3095            },
3096            "isDeprecated": false,
3097            "deprecationReason": null
3098          },
3099          {
3100            "name": "isDefault",
3101            "description": null,
3102            "args": [],
3103            "type": {
3104              "kind": "NON_NULL",
3105              "name": null,
3106              "ofType": {
3107                "kind": "SCALAR",
3108                "name": "Boolean",
3109                "ofType": null
3110              }
3111            },
3112            "isDeprecated": false,
3113            "deprecationReason": null
3114          },
3115          {
3116            "name": "isLegacy",
3117            "description": null,
3118            "args": [],
3119            "type": {
3120              "kind": "NON_NULL",
3121              "name": null,
3122              "ofType": {
3123                "kind": "SCALAR",
3124                "name": "Boolean",
3125                "ofType": null
3126              }
3127            },
3128            "isDeprecated": false,
3129            "deprecationReason": null
3130          },
3131          {
3132            "name": "name",
3133            "description": null,
3134            "args": [],
3135            "type": {
3136              "kind": "NON_NULL",
3137              "name": null,
3138              "ofType": {
3139                "kind": "SCALAR",
3140                "name": "String",
3141                "ofType": null
3142              }
3143            },
3144            "isDeprecated": false,
3145            "deprecationReason": null
3146          }
3147        ],
3148        "inputFields": null,
3149        "interfaces": [],
3150        "enumValues": null,
3151        "possibleTypes": null
3152      },
3153      {
3154        "kind": "INPUT_OBJECT",
3155        "name": "AndroidAppBuildCredentialsInput",
3156        "description": "@isDefault: if set, these build credentials will become the default for the Android app. All other build credentials will have their default status set to false.",
3157        "fields": null,
3158        "inputFields": [
3159          {
3160            "name": "isDefault",
3161            "description": null,
3162            "type": {
3163              "kind": "NON_NULL",
3164              "name": null,
3165              "ofType": {
3166                "kind": "SCALAR",
3167                "name": "Boolean",
3168                "ofType": null
3169              }
3170            },
3171            "defaultValue": null,
3172            "isDeprecated": false,
3173            "deprecationReason": null
3174          },
3175          {
3176            "name": "keystoreId",
3177            "description": null,
3178            "type": {
3179              "kind": "NON_NULL",
3180              "name": null,
3181              "ofType": {
3182                "kind": "SCALAR",
3183                "name": "ID",
3184                "ofType": null
3185              }
3186            },
3187            "defaultValue": null,
3188            "isDeprecated": false,
3189            "deprecationReason": null
3190          },
3191          {
3192            "name": "name",
3193            "description": null,
3194            "type": {
3195              "kind": "NON_NULL",
3196              "name": null,
3197              "ofType": {
3198                "kind": "SCALAR",
3199                "name": "String",
3200                "ofType": null
3201              }
3202            },
3203            "defaultValue": null,
3204            "isDeprecated": false,
3205            "deprecationReason": null
3206          }
3207        ],
3208        "interfaces": null,
3209        "enumValues": null,
3210        "possibleTypes": null
3211      },
3212      {
3213        "kind": "OBJECT",
3214        "name": "AndroidAppBuildCredentialsMutation",
3215        "description": null,
3216        "fields": [
3217          {
3218            "name": "createAndroidAppBuildCredentials",
3219            "description": "Create a set of build credentials for an Android app",
3220            "args": [
3221              {
3222                "name": "androidAppBuildCredentialsInput",
3223                "description": null,
3224                "type": {
3225                  "kind": "NON_NULL",
3226                  "name": null,
3227                  "ofType": {
3228                    "kind": "INPUT_OBJECT",
3229                    "name": "AndroidAppBuildCredentialsInput",
3230                    "ofType": null
3231                  }
3232                },
3233                "defaultValue": null,
3234                "isDeprecated": false,
3235                "deprecationReason": null
3236              },
3237              {
3238                "name": "androidAppCredentialsId",
3239                "description": null,
3240                "type": {
3241                  "kind": "NON_NULL",
3242                  "name": null,
3243                  "ofType": {
3244                    "kind": "SCALAR",
3245                    "name": "ID",
3246                    "ofType": null
3247                  }
3248                },
3249                "defaultValue": null,
3250                "isDeprecated": false,
3251                "deprecationReason": null
3252              }
3253            ],
3254            "type": {
3255              "kind": "NON_NULL",
3256              "name": null,
3257              "ofType": {
3258                "kind": "OBJECT",
3259                "name": "AndroidAppBuildCredentials",
3260                "ofType": null
3261              }
3262            },
3263            "isDeprecated": false,
3264            "deprecationReason": null
3265          },
3266          {
3267            "name": "deleteAndroidAppBuildCredentials",
3268            "description": "delete a set of build credentials for an Android app",
3269            "args": [
3270              {
3271                "name": "id",
3272                "description": null,
3273                "type": {
3274                  "kind": "NON_NULL",
3275                  "name": null,
3276                  "ofType": {
3277                    "kind": "SCALAR",
3278                    "name": "ID",
3279                    "ofType": null
3280                  }
3281                },
3282                "defaultValue": null,
3283                "isDeprecated": false,
3284                "deprecationReason": null
3285              }
3286            ],
3287            "type": {
3288              "kind": "NON_NULL",
3289              "name": null,
3290              "ofType": {
3291                "kind": "OBJECT",
3292                "name": "deleteAndroidAppBuildCredentialsResult",
3293                "ofType": null
3294              }
3295            },
3296            "isDeprecated": false,
3297            "deprecationReason": null
3298          },
3299          {
3300            "name": "setDefault",
3301            "description": "Set the build credentials to be the default for the Android app",
3302            "args": [
3303              {
3304                "name": "id",
3305                "description": null,
3306                "type": {
3307                  "kind": "NON_NULL",
3308                  "name": null,
3309                  "ofType": {
3310                    "kind": "SCALAR",
3311                    "name": "ID",
3312                    "ofType": null
3313                  }
3314                },
3315                "defaultValue": null,
3316                "isDeprecated": false,
3317                "deprecationReason": null
3318              },
3319              {
3320                "name": "isDefault",
3321                "description": null,
3322                "type": {
3323                  "kind": "NON_NULL",
3324                  "name": null,
3325                  "ofType": {
3326                    "kind": "SCALAR",
3327                    "name": "Boolean",
3328                    "ofType": null
3329                  }
3330                },
3331                "defaultValue": null,
3332                "isDeprecated": false,
3333                "deprecationReason": null
3334              }
3335            ],
3336            "type": {
3337              "kind": "NON_NULL",
3338              "name": null,
3339              "ofType": {
3340                "kind": "OBJECT",
3341                "name": "AndroidAppBuildCredentials",
3342                "ofType": null
3343              }
3344            },
3345            "isDeprecated": false,
3346            "deprecationReason": null
3347          },
3348          {
3349            "name": "setKeystore",
3350            "description": "Set the keystore to be used for an Android app",
3351            "args": [
3352              {
3353                "name": "id",
3354                "description": null,
3355                "type": {
3356                  "kind": "NON_NULL",
3357                  "name": null,
3358                  "ofType": {
3359                    "kind": "SCALAR",
3360                    "name": "ID",
3361                    "ofType": null
3362                  }
3363                },
3364                "defaultValue": null,
3365                "isDeprecated": false,
3366                "deprecationReason": null
3367              },
3368              {
3369                "name": "keystoreId",
3370                "description": null,
3371                "type": {
3372                  "kind": "NON_NULL",
3373                  "name": null,
3374                  "ofType": {
3375                    "kind": "SCALAR",
3376                    "name": "ID",
3377                    "ofType": null
3378                  }
3379                },
3380                "defaultValue": null,
3381                "isDeprecated": false,
3382                "deprecationReason": null
3383              }
3384            ],
3385            "type": {
3386              "kind": "NON_NULL",
3387              "name": null,
3388              "ofType": {
3389                "kind": "OBJECT",
3390                "name": "AndroidAppBuildCredentials",
3391                "ofType": null
3392              }
3393            },
3394            "isDeprecated": false,
3395            "deprecationReason": null
3396          },
3397          {
3398            "name": "setName",
3399            "description": "Set the name of a set of build credentials to be used for an Android app",
3400            "args": [
3401              {
3402                "name": "id",
3403                "description": null,
3404                "type": {
3405                  "kind": "NON_NULL",
3406                  "name": null,
3407                  "ofType": {
3408                    "kind": "SCALAR",
3409                    "name": "ID",
3410                    "ofType": null
3411                  }
3412                },
3413                "defaultValue": null,
3414                "isDeprecated": false,
3415                "deprecationReason": null
3416              },
3417              {
3418                "name": "name",
3419                "description": null,
3420                "type": {
3421                  "kind": "NON_NULL",
3422                  "name": null,
3423                  "ofType": {
3424                    "kind": "SCALAR",
3425                    "name": "String",
3426                    "ofType": null
3427                  }
3428                },
3429                "defaultValue": null,
3430                "isDeprecated": false,
3431                "deprecationReason": null
3432              }
3433            ],
3434            "type": {
3435              "kind": "NON_NULL",
3436              "name": null,
3437              "ofType": {
3438                "kind": "OBJECT",
3439                "name": "AndroidAppBuildCredentials",
3440                "ofType": null
3441              }
3442            },
3443            "isDeprecated": false,
3444            "deprecationReason": null
3445          }
3446        ],
3447        "inputFields": null,
3448        "interfaces": [],
3449        "enumValues": null,
3450        "possibleTypes": null
3451      },
3452      {
3453        "kind": "OBJECT",
3454        "name": "AndroidAppCredentials",
3455        "description": null,
3456        "fields": [
3457          {
3458            "name": "androidAppBuildCredentialsArray",
3459            "description": null,
3460            "args": [],
3461            "type": {
3462              "kind": "NON_NULL",
3463              "name": null,
3464              "ofType": {
3465                "kind": "LIST",
3466                "name": null,
3467                "ofType": {
3468                  "kind": "NON_NULL",
3469                  "name": null,
3470                  "ofType": {
3471                    "kind": "OBJECT",
3472                    "name": "AndroidAppBuildCredentials",
3473                    "ofType": null
3474                  }
3475                }
3476              }
3477            },
3478            "isDeprecated": true,
3479            "deprecationReason": "use androidAppBuildCredentialsList instead"
3480          },
3481          {
3482            "name": "androidAppBuildCredentialsList",
3483            "description": null,
3484            "args": [],
3485            "type": {
3486              "kind": "NON_NULL",
3487              "name": null,
3488              "ofType": {
3489                "kind": "LIST",
3490                "name": null,
3491                "ofType": {
3492                  "kind": "NON_NULL",
3493                  "name": null,
3494                  "ofType": {
3495                    "kind": "OBJECT",
3496                    "name": "AndroidAppBuildCredentials",
3497                    "ofType": null
3498                  }
3499                }
3500              }
3501            },
3502            "isDeprecated": false,
3503            "deprecationReason": null
3504          },
3505          {
3506            "name": "androidFcm",
3507            "description": null,
3508            "args": [],
3509            "type": {
3510              "kind": "OBJECT",
3511              "name": "AndroidFcm",
3512              "ofType": null
3513            },
3514            "isDeprecated": false,
3515            "deprecationReason": null
3516          },
3517          {
3518            "name": "app",
3519            "description": null,
3520            "args": [],
3521            "type": {
3522              "kind": "NON_NULL",
3523              "name": null,
3524              "ofType": {
3525                "kind": "OBJECT",
3526                "name": "App",
3527                "ofType": null
3528              }
3529            },
3530            "isDeprecated": false,
3531            "deprecationReason": null
3532          },
3533          {
3534            "name": "applicationIdentifier",
3535            "description": null,
3536            "args": [],
3537            "type": {
3538              "kind": "SCALAR",
3539              "name": "String",
3540              "ofType": null
3541            },
3542            "isDeprecated": false,
3543            "deprecationReason": null
3544          },
3545          {
3546            "name": "googleServiceAccountKeyForSubmissions",
3547            "description": null,
3548            "args": [],
3549            "type": {
3550              "kind": "OBJECT",
3551              "name": "GoogleServiceAccountKey",
3552              "ofType": null
3553            },
3554            "isDeprecated": false,
3555            "deprecationReason": null
3556          },
3557          {
3558            "name": "id",
3559            "description": null,
3560            "args": [],
3561            "type": {
3562              "kind": "NON_NULL",
3563              "name": null,
3564              "ofType": {
3565                "kind": "SCALAR",
3566                "name": "ID",
3567                "ofType": null
3568              }
3569            },
3570            "isDeprecated": false,
3571            "deprecationReason": null
3572          },
3573          {
3574            "name": "isLegacy",
3575            "description": null,
3576            "args": [],
3577            "type": {
3578              "kind": "NON_NULL",
3579              "name": null,
3580              "ofType": {
3581                "kind": "SCALAR",
3582                "name": "Boolean",
3583                "ofType": null
3584              }
3585            },
3586            "isDeprecated": false,
3587            "deprecationReason": null
3588          }
3589        ],
3590        "inputFields": null,
3591        "interfaces": [],
3592        "enumValues": null,
3593        "possibleTypes": null
3594      },
3595      {
3596        "kind": "INPUT_OBJECT",
3597        "name": "AndroidAppCredentialsFilter",
3598        "description": null,
3599        "fields": null,
3600        "inputFields": [
3601          {
3602            "name": "applicationIdentifier",
3603            "description": null,
3604            "type": {
3605              "kind": "SCALAR",
3606              "name": "String",
3607              "ofType": null
3608            },
3609            "defaultValue": null,
3610            "isDeprecated": false,
3611            "deprecationReason": null
3612          },
3613          {
3614            "name": "legacyOnly",
3615            "description": null,
3616            "type": {
3617              "kind": "SCALAR",
3618              "name": "Boolean",
3619              "ofType": null
3620            },
3621            "defaultValue": null,
3622            "isDeprecated": false,
3623            "deprecationReason": null
3624          }
3625        ],
3626        "interfaces": null,
3627        "enumValues": null,
3628        "possibleTypes": null
3629      },
3630      {
3631        "kind": "INPUT_OBJECT",
3632        "name": "AndroidAppCredentialsInput",
3633        "description": null,
3634        "fields": null,
3635        "inputFields": [
3636          {
3637            "name": "fcmId",
3638            "description": null,
3639            "type": {
3640              "kind": "SCALAR",
3641              "name": "ID",
3642              "ofType": null
3643            },
3644            "defaultValue": null,
3645            "isDeprecated": false,
3646            "deprecationReason": null
3647          },
3648          {
3649            "name": "googleServiceAccountKeyForSubmissionsId",
3650            "description": null,
3651            "type": {
3652              "kind": "SCALAR",
3653              "name": "ID",
3654              "ofType": null
3655            },
3656            "defaultValue": null,
3657            "isDeprecated": false,
3658            "deprecationReason": null
3659          }
3660        ],
3661        "interfaces": null,
3662        "enumValues": null,
3663        "possibleTypes": null
3664      },
3665      {
3666        "kind": "OBJECT",
3667        "name": "AndroidAppCredentialsMutation",
3668        "description": null,
3669        "fields": [
3670          {
3671            "name": "createAndroidAppCredentials",
3672            "description": "Create a set of credentials for an Android app",
3673            "args": [
3674              {
3675                "name": "androidAppCredentialsInput",
3676                "description": null,
3677                "type": {
3678                  "kind": "NON_NULL",
3679                  "name": null,
3680                  "ofType": {
3681                    "kind": "INPUT_OBJECT",
3682                    "name": "AndroidAppCredentialsInput",
3683                    "ofType": null
3684                  }
3685                },
3686                "defaultValue": null,
3687                "isDeprecated": false,
3688                "deprecationReason": null
3689              },
3690              {
3691                "name": "appId",
3692                "description": null,
3693                "type": {
3694                  "kind": "NON_NULL",
3695                  "name": null,
3696                  "ofType": {
3697                    "kind": "SCALAR",
3698                    "name": "ID",
3699                    "ofType": null
3700                  }
3701                },
3702                "defaultValue": null,
3703                "isDeprecated": false,
3704                "deprecationReason": null
3705              },
3706              {
3707                "name": "applicationIdentifier",
3708                "description": null,
3709                "type": {
3710                  "kind": "NON_NULL",
3711                  "name": null,
3712                  "ofType": {
3713                    "kind": "SCALAR",
3714                    "name": "String",
3715                    "ofType": null
3716                  }
3717                },
3718                "defaultValue": null,
3719                "isDeprecated": false,
3720                "deprecationReason": null
3721              }
3722            ],
3723            "type": {
3724              "kind": "NON_NULL",
3725              "name": null,
3726              "ofType": {
3727                "kind": "OBJECT",
3728                "name": "AndroidAppCredentials",
3729                "ofType": null
3730              }
3731            },
3732            "isDeprecated": false,
3733            "deprecationReason": null
3734          },
3735          {
3736            "name": "setFcm",
3737            "description": "Set the FCM push key to be used in an Android app",
3738            "args": [
3739              {
3740                "name": "fcmId",
3741                "description": null,
3742                "type": {
3743                  "kind": "NON_NULL",
3744                  "name": null,
3745                  "ofType": {
3746                    "kind": "SCALAR",
3747                    "name": "ID",
3748                    "ofType": null
3749                  }
3750                },
3751                "defaultValue": null,
3752                "isDeprecated": false,
3753                "deprecationReason": null
3754              },
3755              {
3756                "name": "id",
3757                "description": null,
3758                "type": {
3759                  "kind": "NON_NULL",
3760                  "name": null,
3761                  "ofType": {
3762                    "kind": "SCALAR",
3763                    "name": "ID",
3764                    "ofType": null
3765                  }
3766                },
3767                "defaultValue": null,
3768                "isDeprecated": false,
3769                "deprecationReason": null
3770              }
3771            ],
3772            "type": {
3773              "kind": "NON_NULL",
3774              "name": null,
3775              "ofType": {
3776                "kind": "OBJECT",
3777                "name": "AndroidAppCredentials",
3778                "ofType": null
3779              }
3780            },
3781            "isDeprecated": false,
3782            "deprecationReason": null
3783          },
3784          {
3785            "name": "setGoogleServiceAccountKeyForSubmissions",
3786            "description": "Set the Google Service Account Key to be used for submitting an Android app",
3787            "args": [
3788              {
3789                "name": "googleServiceAccountKeyId",
3790                "description": null,
3791                "type": {
3792                  "kind": "NON_NULL",
3793                  "name": null,
3794                  "ofType": {
3795                    "kind": "SCALAR",
3796                    "name": "ID",
3797                    "ofType": null
3798                  }
3799                },
3800                "defaultValue": null,
3801                "isDeprecated": false,
3802                "deprecationReason": null
3803              },
3804              {
3805                "name": "id",
3806                "description": null,
3807                "type": {
3808                  "kind": "NON_NULL",
3809                  "name": null,
3810                  "ofType": {
3811                    "kind": "SCALAR",
3812                    "name": "ID",
3813                    "ofType": null
3814                  }
3815                },
3816                "defaultValue": null,
3817                "isDeprecated": false,
3818                "deprecationReason": null
3819              }
3820            ],
3821            "type": {
3822              "kind": "NON_NULL",
3823              "name": null,
3824              "ofType": {
3825                "kind": "OBJECT",
3826                "name": "AndroidAppCredentials",
3827                "ofType": null
3828              }
3829            },
3830            "isDeprecated": false,
3831            "deprecationReason": null
3832          }
3833        ],
3834        "inputFields": null,
3835        "interfaces": [],
3836        "enumValues": null,
3837        "possibleTypes": null
3838      },
3839      {
3840        "kind": "ENUM",
3841        "name": "AndroidBuildType",
3842        "description": null,
3843        "fields": null,
3844        "inputFields": null,
3845        "interfaces": null,
3846        "enumValues": [
3847          {
3848            "name": "APK",
3849            "description": null,
3850            "isDeprecated": false,
3851            "deprecationReason": null
3852          },
3853          {
3854            "name": "APP_BUNDLE",
3855            "description": null,
3856            "isDeprecated": false,
3857            "deprecationReason": null
3858          },
3859          {
3860            "name": "DEVELOPMENT_CLIENT",
3861            "description": "@deprecated Use developmentClient option instead.",
3862            "isDeprecated": false,
3863            "deprecationReason": null
3864          }
3865        ],
3866        "possibleTypes": null
3867      },
3868      {
3869        "kind": "INPUT_OBJECT",
3870        "name": "AndroidBuilderEnvironmentInput",
3871        "description": null,
3872        "fields": null,
3873        "inputFields": [
3874          {
3875            "name": "env",
3876            "description": null,
3877            "type": {
3878              "kind": "SCALAR",
3879              "name": "JSONObject",
3880              "ofType": null
3881            },
3882            "defaultValue": null,
3883            "isDeprecated": false,
3884            "deprecationReason": null
3885          },
3886          {
3887            "name": "expoCli",
3888            "description": null,
3889            "type": {
3890              "kind": "SCALAR",
3891              "name": "String",
3892              "ofType": null
3893            },
3894            "defaultValue": null,
3895            "isDeprecated": false,
3896            "deprecationReason": null
3897          },
3898          {
3899            "name": "image",
3900            "description": null,
3901            "type": {
3902              "kind": "SCALAR",
3903              "name": "String",
3904              "ofType": null
3905            },
3906            "defaultValue": null,
3907            "isDeprecated": false,
3908            "deprecationReason": null
3909          },
3910          {
3911            "name": "ndk",
3912            "description": null,
3913            "type": {
3914              "kind": "SCALAR",
3915              "name": "String",
3916              "ofType": null
3917            },
3918            "defaultValue": null,
3919            "isDeprecated": false,
3920            "deprecationReason": null
3921          },
3922          {
3923            "name": "node",
3924            "description": null,
3925            "type": {
3926              "kind": "SCALAR",
3927              "name": "String",
3928              "ofType": null
3929            },
3930            "defaultValue": null,
3931            "isDeprecated": false,
3932            "deprecationReason": null
3933          },
3934          {
3935            "name": "yarn",
3936            "description": null,
3937            "type": {
3938              "kind": "SCALAR",
3939              "name": "String",
3940              "ofType": null
3941            },
3942            "defaultValue": null,
3943            "isDeprecated": false,
3944            "deprecationReason": null
3945          }
3946        ],
3947        "interfaces": null,
3948        "enumValues": null,
3949        "possibleTypes": null
3950      },
3951      {
3952        "kind": "OBJECT",
3953        "name": "AndroidFcm",
3954        "description": null,
3955        "fields": [
3956          {
3957            "name": "account",
3958            "description": null,
3959            "args": [],
3960            "type": {
3961              "kind": "NON_NULL",
3962              "name": null,
3963              "ofType": {
3964                "kind": "OBJECT",
3965                "name": "Account",
3966                "ofType": null
3967              }
3968            },
3969            "isDeprecated": false,
3970            "deprecationReason": null
3971          },
3972          {
3973            "name": "createdAt",
3974            "description": null,
3975            "args": [],
3976            "type": {
3977              "kind": "NON_NULL",
3978              "name": null,
3979              "ofType": {
3980                "kind": "SCALAR",
3981                "name": "DateTime",
3982                "ofType": null
3983              }
3984            },
3985            "isDeprecated": false,
3986            "deprecationReason": null
3987          },
3988          {
3989            "name": "credential",
3990            "description": "Legacy FCM: returns the Cloud Messaging token, parses to a String\nFCM v1: returns the Service Account Key file, parses to an Object",
3991            "args": [],
3992            "type": {
3993              "kind": "NON_NULL",
3994              "name": null,
3995              "ofType": {
3996                "kind": "SCALAR",
3997                "name": "JSON",
3998                "ofType": null
3999              }
4000            },
4001            "isDeprecated": false,
4002            "deprecationReason": null
4003          },
4004          {
4005            "name": "id",
4006            "description": null,
4007            "args": [],
4008            "type": {
4009              "kind": "NON_NULL",
4010              "name": null,
4011              "ofType": {
4012                "kind": "SCALAR",
4013                "name": "ID",
4014                "ofType": null
4015              }
4016            },
4017            "isDeprecated": false,
4018            "deprecationReason": null
4019          },
4020          {
4021            "name": "snippet",
4022            "description": null,
4023            "args": [],
4024            "type": {
4025              "kind": "NON_NULL",
4026              "name": null,
4027              "ofType": {
4028                "kind": "UNION",
4029                "name": "FcmSnippet",
4030                "ofType": null
4031              }
4032            },
4033            "isDeprecated": false,
4034            "deprecationReason": null
4035          },
4036          {
4037            "name": "updatedAt",
4038            "description": null,
4039            "args": [],
4040            "type": {
4041              "kind": "NON_NULL",
4042              "name": null,
4043              "ofType": {
4044                "kind": "SCALAR",
4045                "name": "DateTime",
4046                "ofType": null
4047              }
4048            },
4049            "isDeprecated": false,
4050            "deprecationReason": null
4051          },
4052          {
4053            "name": "version",
4054            "description": null,
4055            "args": [],
4056            "type": {
4057              "kind": "NON_NULL",
4058              "name": null,
4059              "ofType": {
4060                "kind": "ENUM",
4061                "name": "AndroidFcmVersion",
4062                "ofType": null
4063              }
4064            },
4065            "isDeprecated": false,
4066            "deprecationReason": null
4067          }
4068        ],
4069        "inputFields": null,
4070        "interfaces": [],
4071        "enumValues": null,
4072        "possibleTypes": null
4073      },
4074      {
4075        "kind": "INPUT_OBJECT",
4076        "name": "AndroidFcmInput",
4077        "description": null,
4078        "fields": null,
4079        "inputFields": [
4080          {
4081            "name": "credential",
4082            "description": null,
4083            "type": {
4084              "kind": "NON_NULL",
4085              "name": null,
4086              "ofType": {
4087                "kind": "SCALAR",
4088                "name": "String",
4089                "ofType": null
4090              }
4091            },
4092            "defaultValue": null,
4093            "isDeprecated": false,
4094            "deprecationReason": null
4095          },
4096          {
4097            "name": "version",
4098            "description": null,
4099            "type": {
4100              "kind": "NON_NULL",
4101              "name": null,
4102              "ofType": {
4103                "kind": "ENUM",
4104                "name": "AndroidFcmVersion",
4105                "ofType": null
4106              }
4107            },
4108            "defaultValue": null,
4109            "isDeprecated": false,
4110            "deprecationReason": null
4111          }
4112        ],
4113        "interfaces": null,
4114        "enumValues": null,
4115        "possibleTypes": null
4116      },
4117      {
4118        "kind": "OBJECT",
4119        "name": "AndroidFcmMutation",
4120        "description": null,
4121        "fields": [
4122          {
4123            "name": "createAndroidFcm",
4124            "description": "Create an FCM credential",
4125            "args": [
4126              {
4127                "name": "accountId",
4128                "description": null,
4129                "type": {
4130                  "kind": "NON_NULL",
4131                  "name": null,
4132                  "ofType": {
4133                    "kind": "SCALAR",
4134                    "name": "ID",
4135                    "ofType": null
4136                  }
4137                },
4138                "defaultValue": null,
4139                "isDeprecated": false,
4140                "deprecationReason": null
4141              },
4142              {
4143                "name": "androidFcmInput",
4144                "description": null,
4145                "type": {
4146                  "kind": "NON_NULL",
4147                  "name": null,
4148                  "ofType": {
4149                    "kind": "INPUT_OBJECT",
4150                    "name": "AndroidFcmInput",
4151                    "ofType": null
4152                  }
4153                },
4154                "defaultValue": null,
4155                "isDeprecated": false,
4156                "deprecationReason": null
4157              }
4158            ],
4159            "type": {
4160              "kind": "NON_NULL",
4161              "name": null,
4162              "ofType": {
4163                "kind": "OBJECT",
4164                "name": "AndroidFcm",
4165                "ofType": null
4166              }
4167            },
4168            "isDeprecated": false,
4169            "deprecationReason": null
4170          },
4171          {
4172            "name": "deleteAndroidFcm",
4173            "description": "Delete an FCM credential",
4174            "args": [
4175              {
4176                "name": "id",
4177                "description": null,
4178                "type": {
4179                  "kind": "NON_NULL",
4180                  "name": null,
4181                  "ofType": {
4182                    "kind": "SCALAR",
4183                    "name": "ID",
4184                    "ofType": null
4185                  }
4186                },
4187                "defaultValue": null,
4188                "isDeprecated": false,
4189                "deprecationReason": null
4190              }
4191            ],
4192            "type": {
4193              "kind": "NON_NULL",
4194              "name": null,
4195              "ofType": {
4196                "kind": "OBJECT",
4197                "name": "deleteAndroidFcmResult",
4198                "ofType": null
4199              }
4200            },
4201            "isDeprecated": false,
4202            "deprecationReason": null
4203          }
4204        ],
4205        "inputFields": null,
4206        "interfaces": [],
4207        "enumValues": null,
4208        "possibleTypes": null
4209      },
4210      {
4211        "kind": "ENUM",
4212        "name": "AndroidFcmVersion",
4213        "description": null,
4214        "fields": null,
4215        "inputFields": null,
4216        "interfaces": null,
4217        "enumValues": [
4218          {
4219            "name": "LEGACY",
4220            "description": null,
4221            "isDeprecated": false,
4222            "deprecationReason": null
4223          },
4224          {
4225            "name": "V1",
4226            "description": null,
4227            "isDeprecated": false,
4228            "deprecationReason": null
4229          }
4230        ],
4231        "possibleTypes": null
4232      },
4233      {
4234        "kind": "INPUT_OBJECT",
4235        "name": "AndroidJobBuildCredentialsInput",
4236        "description": null,
4237        "fields": null,
4238        "inputFields": [
4239          {
4240            "name": "keystore",
4241            "description": null,
4242            "type": {
4243              "kind": "NON_NULL",
4244              "name": null,
4245              "ofType": {
4246                "kind": "INPUT_OBJECT",
4247                "name": "AndroidJobKeystoreInput",
4248                "ofType": null
4249              }
4250            },
4251            "defaultValue": null,
4252            "isDeprecated": false,
4253            "deprecationReason": null
4254          }
4255        ],
4256        "interfaces": null,
4257        "enumValues": null,
4258        "possibleTypes": null
4259      },
4260      {
4261        "kind": "INPUT_OBJECT",
4262        "name": "AndroidJobInput",
4263        "description": null,
4264        "fields": null,
4265        "inputFields": [
4266          {
4267            "name": "artifactPath",
4268            "description": null,
4269            "type": {
4270              "kind": "SCALAR",
4271              "name": "String",
4272              "ofType": null
4273            },
4274            "defaultValue": null,
4275            "isDeprecated": false,
4276            "deprecationReason": null
4277          },
4278          {
4279            "name": "buildType",
4280            "description": null,
4281            "type": {
4282              "kind": "ENUM",
4283              "name": "AndroidBuildType",
4284              "ofType": null
4285            },
4286            "defaultValue": null,
4287            "isDeprecated": false,
4288            "deprecationReason": null
4289          },
4290          {
4291            "name": "builderEnvironment",
4292            "description": null,
4293            "type": {
4294              "kind": "INPUT_OBJECT",
4295              "name": "AndroidBuilderEnvironmentInput",
4296              "ofType": null
4297            },
4298            "defaultValue": null,
4299            "isDeprecated": false,
4300            "deprecationReason": null
4301          },
4302          {
4303            "name": "cache",
4304            "description": null,
4305            "type": {
4306              "kind": "INPUT_OBJECT",
4307              "name": "BuildCacheInput",
4308              "ofType": null
4309            },
4310            "defaultValue": null,
4311            "isDeprecated": false,
4312            "deprecationReason": null
4313          },
4314          {
4315            "name": "developmentClient",
4316            "description": null,
4317            "type": {
4318              "kind": "SCALAR",
4319              "name": "Boolean",
4320              "ofType": null
4321            },
4322            "defaultValue": null,
4323            "isDeprecated": false,
4324            "deprecationReason": null
4325          },
4326          {
4327            "name": "experimental",
4328            "description": null,
4329            "type": {
4330              "kind": "SCALAR",
4331              "name": "JSONObject",
4332              "ofType": null
4333            },
4334            "defaultValue": null,
4335            "isDeprecated": false,
4336            "deprecationReason": null
4337          },
4338          {
4339            "name": "gradleCommand",
4340            "description": null,
4341            "type": {
4342              "kind": "SCALAR",
4343              "name": "String",
4344              "ofType": null
4345            },
4346            "defaultValue": null,
4347            "isDeprecated": false,
4348            "deprecationReason": null
4349          },
4350          {
4351            "name": "projectArchive",
4352            "description": null,
4353            "type": {
4354              "kind": "NON_NULL",
4355              "name": null,
4356              "ofType": {
4357                "kind": "INPUT_OBJECT",
4358                "name": "ProjectArchiveSourceInput",
4359                "ofType": null
4360              }
4361            },
4362            "defaultValue": null,
4363            "isDeprecated": false,
4364            "deprecationReason": null
4365          },
4366          {
4367            "name": "projectRootDirectory",
4368            "description": null,
4369            "type": {
4370              "kind": "NON_NULL",
4371              "name": null,
4372              "ofType": {
4373                "kind": "SCALAR",
4374                "name": "String",
4375                "ofType": null
4376              }
4377            },
4378            "defaultValue": null,
4379            "isDeprecated": false,
4380            "deprecationReason": null
4381          },
4382          {
4383            "name": "releaseChannel",
4384            "description": null,
4385            "type": {
4386              "kind": "SCALAR",
4387              "name": "String",
4388              "ofType": null
4389            },
4390            "defaultValue": null,
4391            "isDeprecated": false,
4392            "deprecationReason": null
4393          },
4394          {
4395            "name": "secrets",
4396            "description": null,
4397            "type": {
4398              "kind": "INPUT_OBJECT",
4399              "name": "AndroidJobSecretsInput",
4400              "ofType": null
4401            },
4402            "defaultValue": null,
4403            "isDeprecated": false,
4404            "deprecationReason": null
4405          },
4406          {
4407            "name": "type",
4408            "description": null,
4409            "type": {
4410              "kind": "NON_NULL",
4411              "name": null,
4412              "ofType": {
4413                "kind": "ENUM",
4414                "name": "BuildWorkflow",
4415                "ofType": null
4416              }
4417            },
4418            "defaultValue": null,
4419            "isDeprecated": false,
4420            "deprecationReason": null
4421          },
4422          {
4423            "name": "updates",
4424            "description": null,
4425            "type": {
4426              "kind": "INPUT_OBJECT",
4427              "name": "BuildUpdatesInput",
4428              "ofType": null
4429            },
4430            "defaultValue": null,
4431            "isDeprecated": false,
4432            "deprecationReason": null
4433          },
4434          {
4435            "name": "username",
4436            "description": null,
4437            "type": {
4438              "kind": "SCALAR",
4439              "name": "String",
4440              "ofType": null
4441            },
4442            "defaultValue": null,
4443            "isDeprecated": false,
4444            "deprecationReason": null
4445          }
4446        ],
4447        "interfaces": null,
4448        "enumValues": null,
4449        "possibleTypes": null
4450      },
4451      {
4452        "kind": "INPUT_OBJECT",
4453        "name": "AndroidJobKeystoreInput",
4454        "description": null,
4455        "fields": null,
4456        "inputFields": [
4457          {
4458            "name": "dataBase64",
4459            "description": null,
4460            "type": {
4461              "kind": "NON_NULL",
4462              "name": null,
4463              "ofType": {
4464                "kind": "SCALAR",
4465                "name": "String",
4466                "ofType": null
4467              }
4468            },
4469            "defaultValue": null,
4470            "isDeprecated": false,
4471            "deprecationReason": null
4472          },
4473          {
4474            "name": "keyAlias",
4475            "description": null,
4476            "type": {
4477              "kind": "NON_NULL",
4478              "name": null,
4479              "ofType": {
4480                "kind": "SCALAR",
4481                "name": "String",
4482                "ofType": null
4483              }
4484            },
4485            "defaultValue": null,
4486            "isDeprecated": false,
4487            "deprecationReason": null
4488          },
4489          {
4490            "name": "keyPassword",
4491            "description": null,
4492            "type": {
4493              "kind": "SCALAR",
4494              "name": "String",
4495              "ofType": null
4496            },
4497            "defaultValue": null,
4498            "isDeprecated": false,
4499            "deprecationReason": null
4500          },
4501          {
4502            "name": "keystorePassword",
4503            "description": null,
4504            "type": {
4505              "kind": "NON_NULL",
4506              "name": null,
4507              "ofType": {
4508                "kind": "SCALAR",
4509                "name": "String",
4510                "ofType": null
4511              }
4512            },
4513            "defaultValue": null,
4514            "isDeprecated": false,
4515            "deprecationReason": null
4516          }
4517        ],
4518        "interfaces": null,
4519        "enumValues": null,
4520        "possibleTypes": null
4521      },
4522      {
4523        "kind": "INPUT_OBJECT",
4524        "name": "AndroidJobSecretsInput",
4525        "description": null,
4526        "fields": null,
4527        "inputFields": [
4528          {
4529            "name": "buildCredentials",
4530            "description": null,
4531            "type": {
4532              "kind": "INPUT_OBJECT",
4533              "name": "AndroidJobBuildCredentialsInput",
4534              "ofType": null
4535            },
4536            "defaultValue": null,
4537            "isDeprecated": false,
4538            "deprecationReason": null
4539          },
4540          {
4541            "name": "environmentSecrets",
4542            "description": null,
4543            "type": {
4544              "kind": "SCALAR",
4545              "name": "JSONObject",
4546              "ofType": null
4547            },
4548            "defaultValue": null,
4549            "isDeprecated": false,
4550            "deprecationReason": null
4551          }
4552        ],
4553        "interfaces": null,
4554        "enumValues": null,
4555        "possibleTypes": null
4556      },
4557      {
4558        "kind": "OBJECT",
4559        "name": "AndroidKeystore",
4560        "description": null,
4561        "fields": [
4562          {
4563            "name": "account",
4564            "description": null,
4565            "args": [],
4566            "type": {
4567              "kind": "NON_NULL",
4568              "name": null,
4569              "ofType": {
4570                "kind": "OBJECT",
4571                "name": "Account",
4572                "ofType": null
4573              }
4574            },
4575            "isDeprecated": false,
4576            "deprecationReason": null
4577          },
4578          {
4579            "name": "createdAt",
4580            "description": null,
4581            "args": [],
4582            "type": {
4583              "kind": "NON_NULL",
4584              "name": null,
4585              "ofType": {
4586                "kind": "SCALAR",
4587                "name": "DateTime",
4588                "ofType": null
4589              }
4590            },
4591            "isDeprecated": false,
4592            "deprecationReason": null
4593          },
4594          {
4595            "name": "id",
4596            "description": null,
4597            "args": [],
4598            "type": {
4599              "kind": "NON_NULL",
4600              "name": null,
4601              "ofType": {
4602                "kind": "SCALAR",
4603                "name": "ID",
4604                "ofType": null
4605              }
4606            },
4607            "isDeprecated": false,
4608            "deprecationReason": null
4609          },
4610          {
4611            "name": "keyAlias",
4612            "description": null,
4613            "args": [],
4614            "type": {
4615              "kind": "NON_NULL",
4616              "name": null,
4617              "ofType": {
4618                "kind": "SCALAR",
4619                "name": "String",
4620                "ofType": null
4621              }
4622            },
4623            "isDeprecated": false,
4624            "deprecationReason": null
4625          },
4626          {
4627            "name": "keyPassword",
4628            "description": null,
4629            "args": [],
4630            "type": {
4631              "kind": "SCALAR",
4632              "name": "String",
4633              "ofType": null
4634            },
4635            "isDeprecated": false,
4636            "deprecationReason": null
4637          },
4638          {
4639            "name": "keystore",
4640            "description": null,
4641            "args": [],
4642            "type": {
4643              "kind": "NON_NULL",
4644              "name": null,
4645              "ofType": {
4646                "kind": "SCALAR",
4647                "name": "String",
4648                "ofType": null
4649              }
4650            },
4651            "isDeprecated": false,
4652            "deprecationReason": null
4653          },
4654          {
4655            "name": "keystorePassword",
4656            "description": null,
4657            "args": [],
4658            "type": {
4659              "kind": "NON_NULL",
4660              "name": null,
4661              "ofType": {
4662                "kind": "SCALAR",
4663                "name": "String",
4664                "ofType": null
4665              }
4666            },
4667            "isDeprecated": false,
4668            "deprecationReason": null
4669          },
4670          {
4671            "name": "md5CertificateFingerprint",
4672            "description": null,
4673            "args": [],
4674            "type": {
4675              "kind": "SCALAR",
4676              "name": "String",
4677              "ofType": null
4678            },
4679            "isDeprecated": false,
4680            "deprecationReason": null
4681          },
4682          {
4683            "name": "sha1CertificateFingerprint",
4684            "description": null,
4685            "args": [],
4686            "type": {
4687              "kind": "SCALAR",
4688              "name": "String",
4689              "ofType": null
4690            },
4691            "isDeprecated": false,
4692            "deprecationReason": null
4693          },
4694          {
4695            "name": "sha256CertificateFingerprint",
4696            "description": null,
4697            "args": [],
4698            "type": {
4699              "kind": "SCALAR",
4700              "name": "String",
4701              "ofType": null
4702            },
4703            "isDeprecated": false,
4704            "deprecationReason": null
4705          },
4706          {
4707            "name": "type",
4708            "description": null,
4709            "args": [],
4710            "type": {
4711              "kind": "NON_NULL",
4712              "name": null,
4713              "ofType": {
4714                "kind": "ENUM",
4715                "name": "AndroidKeystoreType",
4716                "ofType": null
4717              }
4718            },
4719            "isDeprecated": false,
4720            "deprecationReason": null
4721          },
4722          {
4723            "name": "updatedAt",
4724            "description": null,
4725            "args": [],
4726            "type": {
4727              "kind": "NON_NULL",
4728              "name": null,
4729              "ofType": {
4730                "kind": "SCALAR",
4731                "name": "DateTime",
4732                "ofType": null
4733              }
4734            },
4735            "isDeprecated": false,
4736            "deprecationReason": null
4737          }
4738        ],
4739        "inputFields": null,
4740        "interfaces": [],
4741        "enumValues": null,
4742        "possibleTypes": null
4743      },
4744      {
4745        "kind": "INPUT_OBJECT",
4746        "name": "AndroidKeystoreInput",
4747        "description": null,
4748        "fields": null,
4749        "inputFields": [
4750          {
4751            "name": "base64EncodedKeystore",
4752            "description": null,
4753            "type": {
4754              "kind": "NON_NULL",
4755              "name": null,
4756              "ofType": {
4757                "kind": "SCALAR",
4758                "name": "String",
4759                "ofType": null
4760              }
4761            },
4762            "defaultValue": null,
4763            "isDeprecated": false,
4764            "deprecationReason": null
4765          },
4766          {
4767            "name": "keyAlias",
4768            "description": null,
4769            "type": {
4770              "kind": "NON_NULL",
4771              "name": null,
4772              "ofType": {
4773                "kind": "SCALAR",
4774                "name": "String",
4775                "ofType": null
4776              }
4777            },
4778            "defaultValue": null,
4779            "isDeprecated": false,
4780            "deprecationReason": null
4781          },
4782          {
4783            "name": "keyPassword",
4784            "description": null,
4785            "type": {
4786              "kind": "SCALAR",
4787              "name": "String",
4788              "ofType": null
4789            },
4790            "defaultValue": null,
4791            "isDeprecated": false,
4792            "deprecationReason": null
4793          },
4794          {
4795            "name": "keystorePassword",
4796            "description": null,
4797            "type": {
4798              "kind": "NON_NULL",
4799              "name": null,
4800              "ofType": {
4801                "kind": "SCALAR",
4802                "name": "String",
4803                "ofType": null
4804              }
4805            },
4806            "defaultValue": null,
4807            "isDeprecated": false,
4808            "deprecationReason": null
4809          },
4810          {
4811            "name": "type",
4812            "description": null,
4813            "type": {
4814              "kind": "NON_NULL",
4815              "name": null,
4816              "ofType": {
4817                "kind": "ENUM",
4818                "name": "AndroidKeystoreType",
4819                "ofType": null
4820              }
4821            },
4822            "defaultValue": null,
4823            "isDeprecated": false,
4824            "deprecationReason": null
4825          }
4826        ],
4827        "interfaces": null,
4828        "enumValues": null,
4829        "possibleTypes": null
4830      },
4831      {
4832        "kind": "OBJECT",
4833        "name": "AndroidKeystoreMutation",
4834        "description": null,
4835        "fields": [
4836          {
4837            "name": "createAndroidKeystore",
4838            "description": "Create a Keystore",
4839            "args": [
4840              {
4841                "name": "accountId",
4842                "description": null,
4843                "type": {
4844                  "kind": "NON_NULL",
4845                  "name": null,
4846                  "ofType": {
4847                    "kind": "SCALAR",
4848                    "name": "ID",
4849                    "ofType": null
4850                  }
4851                },
4852                "defaultValue": null,
4853                "isDeprecated": false,
4854                "deprecationReason": null
4855              },
4856              {
4857                "name": "androidKeystoreInput",
4858                "description": null,
4859                "type": {
4860                  "kind": "NON_NULL",
4861                  "name": null,
4862                  "ofType": {
4863                    "kind": "INPUT_OBJECT",
4864                    "name": "AndroidKeystoreInput",
4865                    "ofType": null
4866                  }
4867                },
4868                "defaultValue": null,
4869                "isDeprecated": false,
4870                "deprecationReason": null
4871              }
4872            ],
4873            "type": {
4874              "kind": "OBJECT",
4875              "name": "AndroidKeystore",
4876              "ofType": null
4877            },
4878            "isDeprecated": false,
4879            "deprecationReason": null
4880          },
4881          {
4882            "name": "deleteAndroidKeystore",
4883            "description": "Delete a Keystore",
4884            "args": [
4885              {
4886                "name": "id",
4887                "description": null,
4888                "type": {
4889                  "kind": "NON_NULL",
4890                  "name": null,
4891                  "ofType": {
4892                    "kind": "SCALAR",
4893                    "name": "ID",
4894                    "ofType": null
4895                  }
4896                },
4897                "defaultValue": null,
4898                "isDeprecated": false,
4899                "deprecationReason": null
4900              }
4901            ],
4902            "type": {
4903              "kind": "NON_NULL",
4904              "name": null,
4905              "ofType": {
4906                "kind": "OBJECT",
4907                "name": "DeleteAndroidKeystoreResult",
4908                "ofType": null
4909              }
4910            },
4911            "isDeprecated": false,
4912            "deprecationReason": null
4913          }
4914        ],
4915        "inputFields": null,
4916        "interfaces": [],
4917        "enumValues": null,
4918        "possibleTypes": null
4919      },
4920      {
4921        "kind": "ENUM",
4922        "name": "AndroidKeystoreType",
4923        "description": null,
4924        "fields": null,
4925        "inputFields": null,
4926        "interfaces": null,
4927        "enumValues": [
4928          {
4929            "name": "JKS",
4930            "description": null,
4931            "isDeprecated": false,
4932            "deprecationReason": null
4933          },
4934          {
4935            "name": "PKCS12",
4936            "description": null,
4937            "isDeprecated": false,
4938            "deprecationReason": null
4939          },
4940          {
4941            "name": "UNKNOWN",
4942            "description": null,
4943            "isDeprecated": false,
4944            "deprecationReason": null
4945          }
4946        ],
4947        "possibleTypes": null
4948      },
4949      {
4950        "kind": "OBJECT",
4951        "name": "AndroidSubmissionConfig",
4952        "description": null,
4953        "fields": [
4954          {
4955            "name": "applicationIdentifier",
4956            "description": null,
4957            "args": [],
4958            "type": {
4959              "kind": "SCALAR",
4960              "name": "String",
4961              "ofType": null
4962            },
4963            "isDeprecated": true,
4964            "deprecationReason": "applicationIdentifier is deprecated and will be auto-detected on submit"
4965          },
4966          {
4967            "name": "archiveType",
4968            "description": null,
4969            "args": [],
4970            "type": {
4971              "kind": "ENUM",
4972              "name": "SubmissionAndroidArchiveType",
4973              "ofType": null
4974            },
4975            "isDeprecated": true,
4976            "deprecationReason": "archiveType is deprecated and will be null"
4977          },
4978          {
4979            "name": "releaseStatus",
4980            "description": null,
4981            "args": [],
4982            "type": {
4983              "kind": "ENUM",
4984              "name": "SubmissionAndroidReleaseStatus",
4985              "ofType": null
4986            },
4987            "isDeprecated": false,
4988            "deprecationReason": null
4989          },
4990          {
4991            "name": "track",
4992            "description": null,
4993            "args": [],
4994            "type": {
4995              "kind": "NON_NULL",
4996              "name": null,
4997              "ofType": {
4998                "kind": "ENUM",
4999                "name": "SubmissionAndroidTrack",
5000                "ofType": null
5001              }
5002            },
5003            "isDeprecated": false,
5004            "deprecationReason": null
5005          }
5006        ],
5007        "inputFields": null,
5008        "interfaces": [],
5009        "enumValues": null,
5010        "possibleTypes": null
5011      },
5012      {
5013        "kind": "INPUT_OBJECT",
5014        "name": "AndroidSubmissionConfigInput",
5015        "description": null,
5016        "fields": null,
5017        "inputFields": [
5018          {
5019            "name": "applicationIdentifier",
5020            "description": null,
5021            "type": {
5022              "kind": "SCALAR",
5023              "name": "String",
5024              "ofType": null
5025            },
5026            "defaultValue": null,
5027            "isDeprecated": false,
5028            "deprecationReason": null
5029          },
5030          {
5031            "name": "archiveUrl",
5032            "description": null,
5033            "type": {
5034              "kind": "SCALAR",
5035              "name": "String",
5036              "ofType": null
5037            },
5038            "defaultValue": null,
5039            "isDeprecated": false,
5040            "deprecationReason": null
5041          },
5042          {
5043            "name": "changesNotSentForReview",
5044            "description": null,
5045            "type": {
5046              "kind": "SCALAR",
5047              "name": "Boolean",
5048              "ofType": null
5049            },
5050            "defaultValue": null,
5051            "isDeprecated": false,
5052            "deprecationReason": null
5053          },
5054          {
5055            "name": "googleServiceAccountKeyId",
5056            "description": null,
5057            "type": {
5058              "kind": "SCALAR",
5059              "name": "String",
5060              "ofType": null
5061            },
5062            "defaultValue": null,
5063            "isDeprecated": false,
5064            "deprecationReason": null
5065          },
5066          {
5067            "name": "googleServiceAccountKeyJson",
5068            "description": null,
5069            "type": {
5070              "kind": "SCALAR",
5071              "name": "String",
5072              "ofType": null
5073            },
5074            "defaultValue": null,
5075            "isDeprecated": false,
5076            "deprecationReason": null
5077          },
5078          {
5079            "name": "releaseStatus",
5080            "description": null,
5081            "type": {
5082              "kind": "ENUM",
5083              "name": "SubmissionAndroidReleaseStatus",
5084              "ofType": null
5085            },
5086            "defaultValue": null,
5087            "isDeprecated": false,
5088            "deprecationReason": null
5089          },
5090          {
5091            "name": "track",
5092            "description": null,
5093            "type": {
5094              "kind": "NON_NULL",
5095              "name": null,
5096              "ofType": {
5097                "kind": "ENUM",
5098                "name": "SubmissionAndroidTrack",
5099                "ofType": null
5100              }
5101            },
5102            "defaultValue": null,
5103            "isDeprecated": false,
5104            "deprecationReason": null
5105          }
5106        ],
5107        "interfaces": null,
5108        "enumValues": null,
5109        "possibleTypes": null
5110      },
5111      {
5112        "kind": "OBJECT",
5113        "name": "App",
5114        "description": "Represents an Exponent App (or Experience in legacy terms)",
5115        "fields": [
5116          {
5117            "name": "accessTokens",
5118            "description": null,
5119            "args": [],
5120            "type": {
5121              "kind": "NON_NULL",
5122              "name": null,
5123              "ofType": {
5124                "kind": "LIST",
5125                "name": null,
5126                "ofType": {
5127                  "kind": "OBJECT",
5128                  "name": "AccessToken",
5129                  "ofType": null
5130                }
5131              }
5132            },
5133            "isDeprecated": true,
5134            "deprecationReason": "Legacy access tokens are deprecated"
5135          },
5136          {
5137            "name": "activityTimelineProjectActivities",
5138            "description": "Coalesced project activity for an app",
5139            "args": [
5140              {
5141                "name": "createdBefore",
5142                "description": " Offset the query ",
5143                "type": {
5144                  "kind": "SCALAR",
5145                  "name": "DateTime",
5146                  "ofType": null
5147                },
5148                "defaultValue": null,
5149                "isDeprecated": false,
5150                "deprecationReason": null
5151              },
5152              {
5153                "name": "filterPlatforms",
5154                "description": null,
5155                "type": {
5156                  "kind": "LIST",
5157                  "name": null,
5158                  "ofType": {
5159                    "kind": "NON_NULL",
5160                    "name": null,
5161                    "ofType": {
5162                      "kind": "ENUM",
5163                      "name": "AppPlatform",
5164                      "ofType": null
5165                    }
5166                  }
5167                },
5168                "defaultValue": null,
5169                "isDeprecated": false,
5170                "deprecationReason": null
5171              },
5172              {
5173                "name": "filterReleaseChannels",
5174                "description": null,
5175                "type": {
5176                  "kind": "LIST",
5177                  "name": null,
5178                  "ofType": {
5179                    "kind": "NON_NULL",
5180                    "name": null,
5181                    "ofType": {
5182                      "kind": "SCALAR",
5183                      "name": "String",
5184                      "ofType": null
5185                    }
5186                  }
5187                },
5188                "defaultValue": null,
5189                "isDeprecated": false,
5190                "deprecationReason": null
5191              },
5192              {
5193                "name": "filterTypes",
5194                "description": " Types of objects to filter ",
5195                "type": {
5196                  "kind": "LIST",
5197                  "name": null,
5198                  "ofType": {
5199                    "kind": "NON_NULL",
5200                    "name": null,
5201                    "ofType": {
5202                      "kind": "ENUM",
5203                      "name": "ActivityTimelineProjectActivityType",
5204                      "ofType": null
5205                    }
5206                  }
5207                },
5208                "defaultValue": null,
5209                "isDeprecated": false,
5210                "deprecationReason": null
5211              },
5212              {
5213                "name": "limit",
5214                "description": null,
5215                "type": {
5216                  "kind": "NON_NULL",
5217                  "name": null,
5218                  "ofType": {
5219                    "kind": "SCALAR",
5220                    "name": "Int",
5221                    "ofType": null
5222                  }
5223                },
5224                "defaultValue": null,
5225                "isDeprecated": false,
5226                "deprecationReason": null
5227              }
5228            ],
5229            "type": {
5230              "kind": "NON_NULL",
5231              "name": null,
5232              "ofType": {
5233                "kind": "LIST",
5234                "name": null,
5235                "ofType": {
5236                  "kind": "NON_NULL",
5237                  "name": null,
5238                  "ofType": {
5239                    "kind": "INTERFACE",
5240                    "name": "ActivityTimelineProjectActivity",
5241                    "ofType": null
5242                  }
5243                }
5244              }
5245            },
5246            "isDeprecated": false,
5247            "deprecationReason": null
5248          },
5249          {
5250            "name": "androidAppCredentials",
5251            "description": "Android app credentials for the project",
5252            "args": [
5253              {
5254                "name": "filter",
5255                "description": null,
5256                "type": {
5257                  "kind": "INPUT_OBJECT",
5258                  "name": "AndroidAppCredentialsFilter",
5259                  "ofType": null
5260                },
5261                "defaultValue": null,
5262                "isDeprecated": false,
5263                "deprecationReason": null
5264              }
5265            ],
5266            "type": {
5267              "kind": "NON_NULL",
5268              "name": null,
5269              "ofType": {
5270                "kind": "LIST",
5271                "name": null,
5272                "ofType": {
5273                  "kind": "NON_NULL",
5274                  "name": null,
5275                  "ofType": {
5276                    "kind": "OBJECT",
5277                    "name": "AndroidAppCredentials",
5278                    "ofType": null
5279                  }
5280                }
5281              }
5282            },
5283            "isDeprecated": false,
5284            "deprecationReason": null
5285          },
5286          {
5287            "name": "appStoreUrl",
5288            "description": "ios.appStoreUrl field from most recent classic update manifest",
5289            "args": [],
5290            "type": {
5291              "kind": "SCALAR",
5292              "name": "String",
5293              "ofType": null
5294            },
5295            "isDeprecated": false,
5296            "deprecationReason": null
5297          },
5298          {
5299            "name": "buildJobs",
5300            "description": null,
5301            "args": [
5302              {
5303                "name": "limit",
5304                "description": null,
5305                "type": {
5306                  "kind": "NON_NULL",
5307                  "name": null,
5308                  "ofType": {
5309                    "kind": "SCALAR",
5310                    "name": "Int",
5311                    "ofType": null
5312                  }
5313                },
5314                "defaultValue": null,
5315                "isDeprecated": false,
5316                "deprecationReason": null
5317              },
5318              {
5319                "name": "offset",
5320                "description": null,
5321                "type": {
5322                  "kind": "NON_NULL",
5323                  "name": null,
5324                  "ofType": {
5325                    "kind": "SCALAR",
5326                    "name": "Int",
5327                    "ofType": null
5328                  }
5329                },
5330                "defaultValue": null,
5331                "isDeprecated": false,
5332                "deprecationReason": null
5333              },
5334              {
5335                "name": "status",
5336                "description": null,
5337                "type": {
5338                  "kind": "ENUM",
5339                  "name": "BuildStatus",
5340                  "ofType": null
5341                },
5342                "defaultValue": null,
5343                "isDeprecated": false,
5344                "deprecationReason": null
5345              }
5346            ],
5347            "type": {
5348              "kind": "NON_NULL",
5349              "name": null,
5350              "ofType": {
5351                "kind": "LIST",
5352                "name": null,
5353                "ofType": {
5354                  "kind": "NON_NULL",
5355                  "name": null,
5356                  "ofType": {
5357                    "kind": "OBJECT",
5358                    "name": "BuildJob",
5359                    "ofType": null
5360                  }
5361                }
5362              }
5363            },
5364            "isDeprecated": false,
5365            "deprecationReason": null
5366          },
5367          {
5368            "name": "buildOrBuildJobs",
5369            "description": "Coalesced Build (EAS) or BuildJob (Classic) items for this app.",
5370            "args": [
5371              {
5372                "name": "createdBefore",
5373                "description": " Offset the query ",
5374                "type": {
5375                  "kind": "SCALAR",
5376                  "name": "DateTime",
5377                  "ofType": null
5378                },
5379                "defaultValue": null,
5380                "isDeprecated": false,
5381                "deprecationReason": null
5382              },
5383              {
5384                "name": "limit",
5385                "description": null,
5386                "type": {
5387                  "kind": "NON_NULL",
5388                  "name": null,
5389                  "ofType": {
5390                    "kind": "SCALAR",
5391                    "name": "Int",
5392                    "ofType": null
5393                  }
5394                },
5395                "defaultValue": null,
5396                "isDeprecated": false,
5397                "deprecationReason": null
5398              }
5399            ],
5400            "type": {
5401              "kind": "NON_NULL",
5402              "name": null,
5403              "ofType": {
5404                "kind": "LIST",
5405                "name": null,
5406                "ofType": {
5407                  "kind": "NON_NULL",
5408                  "name": null,
5409                  "ofType": {
5410                    "kind": "INTERFACE",
5411                    "name": "BuildOrBuildJob",
5412                    "ofType": null
5413                  }
5414                }
5415              }
5416            },
5417            "isDeprecated": true,
5418            "deprecationReason": "Use activityTimelineProjectActivities with filterTypes instead"
5419          },
5420          {
5421            "name": "builds",
5422            "description": "(EAS Build) Builds associated with this app",
5423            "args": [
5424              {
5425                "name": "filter",
5426                "description": null,
5427                "type": {
5428                  "kind": "INPUT_OBJECT",
5429                  "name": "BuildFilter",
5430                  "ofType": null
5431                },
5432                "defaultValue": null,
5433                "isDeprecated": false,
5434                "deprecationReason": null
5435              },
5436              {
5437                "name": "limit",
5438                "description": null,
5439                "type": {
5440                  "kind": "NON_NULL",
5441                  "name": null,
5442                  "ofType": {
5443                    "kind": "SCALAR",
5444                    "name": "Int",
5445                    "ofType": null
5446                  }
5447                },
5448                "defaultValue": null,
5449                "isDeprecated": false,
5450                "deprecationReason": null
5451              },
5452              {
5453                "name": "offset",
5454                "description": null,
5455                "type": {
5456                  "kind": "NON_NULL",
5457                  "name": null,
5458                  "ofType": {
5459                    "kind": "SCALAR",
5460                    "name": "Int",
5461                    "ofType": null
5462                  }
5463                },
5464                "defaultValue": null,
5465                "isDeprecated": false,
5466                "deprecationReason": null
5467              },
5468              {
5469                "name": "platform",
5470                "description": "Deprecated, use filter instead",
5471                "type": {
5472                  "kind": "ENUM",
5473                  "name": "AppPlatform",
5474                  "ofType": null
5475                },
5476                "defaultValue": null,
5477                "isDeprecated": false,
5478                "deprecationReason": null
5479              },
5480              {
5481                "name": "status",
5482                "description": "Deprecated, use filter instead",
5483                "type": {
5484                  "kind": "ENUM",
5485                  "name": "BuildStatus",
5486                  "ofType": null
5487                },
5488                "defaultValue": null,
5489                "isDeprecated": false,
5490                "deprecationReason": null
5491              }
5492            ],
5493            "type": {
5494              "kind": "NON_NULL",
5495              "name": null,
5496              "ofType": {
5497                "kind": "LIST",
5498                "name": null,
5499                "ofType": {
5500                  "kind": "NON_NULL",
5501                  "name": null,
5502                  "ofType": {
5503                    "kind": "OBJECT",
5504                    "name": "Build",
5505                    "ofType": null
5506                  }
5507                }
5508              }
5509            },
5510            "isDeprecated": false,
5511            "deprecationReason": null
5512          },
5513          {
5514            "name": "buildsReleaseChannels",
5515            "description": "Classic update release channel names that have at least one build",
5516            "args": [],
5517            "type": {
5518              "kind": "NON_NULL",
5519              "name": null,
5520              "ofType": {
5521                "kind": "LIST",
5522                "name": null,
5523                "ofType": {
5524                  "kind": "NON_NULL",
5525                  "name": null,
5526                  "ofType": {
5527                    "kind": "SCALAR",
5528                    "name": "String",
5529                    "ofType": null
5530                  }
5531                }
5532              }
5533            },
5534            "isDeprecated": false,
5535            "deprecationReason": null
5536          },
5537          {
5538            "name": "deployment",
5539            "description": null,
5540            "args": [
5541              {
5542                "name": "channel",
5543                "description": null,
5544                "type": {
5545                  "kind": "NON_NULL",
5546                  "name": null,
5547                  "ofType": {
5548                    "kind": "SCALAR",
5549                    "name": "String",
5550                    "ofType": null
5551                  }
5552                },
5553                "defaultValue": null,
5554                "isDeprecated": false,
5555                "deprecationReason": null
5556              },
5557              {
5558                "name": "options",
5559                "description": null,
5560                "type": {
5561                  "kind": "INPUT_OBJECT",
5562                  "name": "DeploymentOptions",
5563                  "ofType": null
5564                },
5565                "defaultValue": null,
5566                "isDeprecated": false,
5567                "deprecationReason": null
5568              },
5569              {
5570                "name": "runtimeVersion",
5571                "description": null,
5572                "type": {
5573                  "kind": "NON_NULL",
5574                  "name": null,
5575                  "ofType": {
5576                    "kind": "SCALAR",
5577                    "name": "String",
5578                    "ofType": null
5579                  }
5580                },
5581                "defaultValue": null,
5582                "isDeprecated": false,
5583                "deprecationReason": null
5584              }
5585            ],
5586            "type": {
5587              "kind": "OBJECT",
5588              "name": "Deployment",
5589              "ofType": null
5590            },
5591            "isDeprecated": false,
5592            "deprecationReason": null
5593          },
5594          {
5595            "name": "deployments",
5596            "description": "Deployments associated with this app",
5597            "args": [
5598              {
5599                "name": "limit",
5600                "description": null,
5601                "type": {
5602                  "kind": "NON_NULL",
5603                  "name": null,
5604                  "ofType": {
5605                    "kind": "SCALAR",
5606                    "name": "Int",
5607                    "ofType": null
5608                  }
5609                },
5610                "defaultValue": null,
5611                "isDeprecated": false,
5612                "deprecationReason": null
5613              },
5614              {
5615                "name": "mostRecentlyUpdatedAt",
5616                "description": "Offset the query",
5617                "type": {
5618                  "kind": "SCALAR",
5619                  "name": "DateTime",
5620                  "ofType": null
5621                },
5622                "defaultValue": null,
5623                "isDeprecated": false,
5624                "deprecationReason": null
5625              },
5626              {
5627                "name": "options",
5628                "description": null,
5629                "type": {
5630                  "kind": "INPUT_OBJECT",
5631                  "name": "DeploymentOptions",
5632                  "ofType": null
5633                },
5634                "defaultValue": null,
5635                "isDeprecated": false,
5636                "deprecationReason": null
5637              }
5638            ],
5639            "type": {
5640              "kind": "NON_NULL",
5641              "name": null,
5642              "ofType": {
5643                "kind": "LIST",
5644                "name": null,
5645                "ofType": {
5646                  "kind": "NON_NULL",
5647                  "name": null,
5648                  "ofType": {
5649                    "kind": "OBJECT",
5650                    "name": "Deployment",
5651                    "ofType": null
5652                  }
5653                }
5654              }
5655            },
5656            "isDeprecated": false,
5657            "deprecationReason": null
5658          },
5659          {
5660            "name": "description",
5661            "description": null,
5662            "args": [],
5663            "type": {
5664              "kind": "NON_NULL",
5665              "name": null,
5666              "ofType": {
5667                "kind": "SCALAR",
5668                "name": "String",
5669                "ofType": null
5670              }
5671            },
5672            "isDeprecated": false,
5673            "deprecationReason": null
5674          },
5675          {
5676            "name": "environmentSecrets",
5677            "description": "Environment secrets for an app",
5678            "args": [
5679              {
5680                "name": "filterNames",
5681                "description": null,
5682                "type": {
5683                  "kind": "LIST",
5684                  "name": null,
5685                  "ofType": {
5686                    "kind": "NON_NULL",
5687                    "name": null,
5688                    "ofType": {
5689                      "kind": "SCALAR",
5690                      "name": "String",
5691                      "ofType": null
5692                    }
5693                  }
5694                },
5695                "defaultValue": null,
5696                "isDeprecated": false,
5697                "deprecationReason": null
5698              }
5699            ],
5700            "type": {
5701              "kind": "NON_NULL",
5702              "name": null,
5703              "ofType": {
5704                "kind": "LIST",
5705                "name": null,
5706                "ofType": {
5707                  "kind": "NON_NULL",
5708                  "name": null,
5709                  "ofType": {
5710                    "kind": "OBJECT",
5711                    "name": "EnvironmentSecret",
5712                    "ofType": null
5713                  }
5714                }
5715              }
5716            },
5717            "isDeprecated": false,
5718            "deprecationReason": null
5719          },
5720          {
5721            "name": "fullName",
5722            "description": null,
5723            "args": [],
5724            "type": {
5725              "kind": "NON_NULL",
5726              "name": null,
5727              "ofType": {
5728                "kind": "SCALAR",
5729                "name": "String",
5730                "ofType": null
5731              }
5732            },
5733            "isDeprecated": false,
5734            "deprecationReason": null
5735          },
5736          {
5737            "name": "githubUrl",
5738            "description": "githubUrl field from most recent classic update manifest",
5739            "args": [],
5740            "type": {
5741              "kind": "SCALAR",
5742              "name": "String",
5743              "ofType": null
5744            },
5745            "isDeprecated": false,
5746            "deprecationReason": null
5747          },
5748          {
5749            "name": "icon",
5750            "description": "Info about the icon specified in the most recent classic update manifest",
5751            "args": [],
5752            "type": {
5753              "kind": "OBJECT",
5754              "name": "AppIcon",
5755              "ofType": null
5756            },
5757            "isDeprecated": false,
5758            "deprecationReason": null
5759          },
5760          {
5761            "name": "iconUrl",
5762            "description": null,
5763            "args": [],
5764            "type": {
5765              "kind": "SCALAR",
5766              "name": "String",
5767              "ofType": null
5768            },
5769            "isDeprecated": true,
5770            "deprecationReason": "No longer supported"
5771          },
5772          {
5773            "name": "id",
5774            "description": null,
5775            "args": [],
5776            "type": {
5777              "kind": "NON_NULL",
5778              "name": null,
5779              "ofType": {
5780                "kind": "SCALAR",
5781                "name": "ID",
5782                "ofType": null
5783              }
5784            },
5785            "isDeprecated": false,
5786            "deprecationReason": null
5787          },
5788          {
5789            "name": "iosAppCredentials",
5790            "description": "iOS app credentials for the project",
5791            "args": [
5792              {
5793                "name": "filter",
5794                "description": null,
5795                "type": {
5796                  "kind": "INPUT_OBJECT",
5797                  "name": "IosAppCredentialsFilter",
5798                  "ofType": null
5799                },
5800                "defaultValue": null,
5801                "isDeprecated": false,
5802                "deprecationReason": null
5803              }
5804            ],
5805            "type": {
5806              "kind": "NON_NULL",
5807              "name": null,
5808              "ofType": {
5809                "kind": "LIST",
5810                "name": null,
5811                "ofType": {
5812                  "kind": "NON_NULL",
5813                  "name": null,
5814                  "ofType": {
5815                    "kind": "OBJECT",
5816                    "name": "IosAppCredentials",
5817                    "ofType": null
5818                  }
5819                }
5820              }
5821            },
5822            "isDeprecated": false,
5823            "deprecationReason": null
5824          },
5825          {
5826            "name": "isDeprecated",
5827            "description": "Whether the latest classic update publish is using a deprecated SDK version",
5828            "args": [],
5829            "type": {
5830              "kind": "NON_NULL",
5831              "name": null,
5832              "ofType": {
5833                "kind": "SCALAR",
5834                "name": "Boolean",
5835                "ofType": null
5836              }
5837            },
5838            "isDeprecated": false,
5839            "deprecationReason": null
5840          },
5841          {
5842            "name": "isLikedByMe",
5843            "description": null,
5844            "args": [],
5845            "type": {
5846              "kind": "NON_NULL",
5847              "name": null,
5848              "ofType": {
5849                "kind": "SCALAR",
5850                "name": "Boolean",
5851                "ofType": null
5852              }
5853            },
5854            "isDeprecated": true,
5855            "deprecationReason": "'likes' have been deprecated."
5856          },
5857          {
5858            "name": "lastPublishedTime",
5859            "description": null,
5860            "args": [],
5861            "type": {
5862              "kind": "NON_NULL",
5863              "name": null,
5864              "ofType": {
5865                "kind": "SCALAR",
5866                "name": "DateTime",
5867                "ofType": null
5868              }
5869            },
5870            "isDeprecated": true,
5871            "deprecationReason": "No longer supported"
5872          },
5873          {
5874            "name": "latestReleaseForReleaseChannel",
5875            "description": null,
5876            "args": [
5877              {
5878                "name": "platform",
5879                "description": null,
5880                "type": {
5881                  "kind": "NON_NULL",
5882                  "name": null,
5883                  "ofType": {
5884                    "kind": "ENUM",
5885                    "name": "AppPlatform",
5886                    "ofType": null
5887                  }
5888                },
5889                "defaultValue": null,
5890                "isDeprecated": false,
5891                "deprecationReason": null
5892              },
5893              {
5894                "name": "releaseChannel",
5895                "description": null,
5896                "type": {
5897                  "kind": "NON_NULL",
5898                  "name": null,
5899                  "ofType": {
5900                    "kind": "SCALAR",
5901                    "name": "String",
5902                    "ofType": null
5903                  }
5904                },
5905                "defaultValue": null,
5906                "isDeprecated": false,
5907                "deprecationReason": null
5908              }
5909            ],
5910            "type": {
5911              "kind": "OBJECT",
5912              "name": "AppRelease",
5913              "ofType": null
5914            },
5915            "isDeprecated": false,
5916            "deprecationReason": null
5917          },
5918          {
5919            "name": "latestReleaseId",
5920            "description": "ID of latest classic update release",
5921            "args": [],
5922            "type": {
5923              "kind": "NON_NULL",
5924              "name": null,
5925              "ofType": {
5926                "kind": "SCALAR",
5927                "name": "ID",
5928                "ofType": null
5929              }
5930            },
5931            "isDeprecated": false,
5932            "deprecationReason": null
5933          },
5934          {
5935            "name": "likeCount",
5936            "description": null,
5937            "args": [],
5938            "type": {
5939              "kind": "NON_NULL",
5940              "name": null,
5941              "ofType": {
5942                "kind": "SCALAR",
5943                "name": "Int",
5944                "ofType": null
5945              }
5946            },
5947            "isDeprecated": true,
5948            "deprecationReason": "'likes' have been deprecated."
5949          },
5950          {
5951            "name": "likedBy",
5952            "description": null,
5953            "args": [
5954              {
5955                "name": "limit",
5956                "description": null,
5957                "type": {
5958                  "kind": "SCALAR",
5959                  "name": "Int",
5960                  "ofType": null
5961                },
5962                "defaultValue": null,
5963                "isDeprecated": false,
5964                "deprecationReason": null
5965              },
5966              {
5967                "name": "offset",
5968                "description": null,
5969                "type": {
5970                  "kind": "SCALAR",
5971                  "name": "Int",
5972                  "ofType": null
5973                },
5974                "defaultValue": null,
5975                "isDeprecated": false,
5976                "deprecationReason": null
5977              }
5978            ],
5979            "type": {
5980              "kind": "NON_NULL",
5981              "name": null,
5982              "ofType": {
5983                "kind": "LIST",
5984                "name": null,
5985                "ofType": {
5986                  "kind": "OBJECT",
5987                  "name": "User",
5988                  "ofType": null
5989                }
5990              }
5991            },
5992            "isDeprecated": true,
5993            "deprecationReason": "'likes' have been deprecated."
5994          },
5995          {
5996            "name": "name",
5997            "description": null,
5998            "args": [],
5999            "type": {
6000              "kind": "NON_NULL",
6001              "name": null,
6002              "ofType": {
6003                "kind": "SCALAR",
6004                "name": "String",
6005                "ofType": null
6006              }
6007            },
6008            "isDeprecated": false,
6009            "deprecationReason": null
6010          },
6011          {
6012            "name": "ownerAccount",
6013            "description": null,
6014            "args": [],
6015            "type": {
6016              "kind": "NON_NULL",
6017              "name": null,
6018              "ofType": {
6019                "kind": "OBJECT",
6020                "name": "Account",
6021                "ofType": null
6022              }
6023            },
6024            "isDeprecated": false,
6025            "deprecationReason": null
6026          },
6027          {
6028            "name": "packageName",
6029            "description": null,
6030            "args": [],
6031            "type": {
6032              "kind": "NON_NULL",
6033              "name": null,
6034              "ofType": {
6035                "kind": "SCALAR",
6036                "name": "String",
6037                "ofType": null
6038              }
6039            },
6040            "isDeprecated": true,
6041            "deprecationReason": "No longer supported"
6042          },
6043          {
6044            "name": "packageUsername",
6045            "description": null,
6046            "args": [],
6047            "type": {
6048              "kind": "NON_NULL",
6049              "name": null,
6050              "ofType": {
6051                "kind": "SCALAR",
6052                "name": "String",
6053                "ofType": null
6054              }
6055            },
6056            "isDeprecated": true,
6057            "deprecationReason": "No longer supported"
6058          },
6059          {
6060            "name": "playStoreUrl",
6061            "description": "android.playStoreUrl field from most recent classic update manifest",
6062            "args": [],
6063            "type": {
6064              "kind": "SCALAR",
6065              "name": "String",
6066              "ofType": null
6067            },
6068            "isDeprecated": false,
6069            "deprecationReason": null
6070          },
6071          {
6072            "name": "privacy",
6073            "description": null,
6074            "args": [],
6075            "type": {
6076              "kind": "NON_NULL",
6077              "name": null,
6078              "ofType": {
6079                "kind": "SCALAR",
6080                "name": "String",
6081                "ofType": null
6082              }
6083            },
6084            "isDeprecated": true,
6085            "deprecationReason": "Use 'privacySetting' instead."
6086          },
6087          {
6088            "name": "privacySetting",
6089            "description": null,
6090            "args": [],
6091            "type": {
6092              "kind": "NON_NULL",
6093              "name": null,
6094              "ofType": {
6095                "kind": "ENUM",
6096                "name": "AppPrivacy",
6097                "ofType": null
6098              }
6099            },
6100            "isDeprecated": false,
6101            "deprecationReason": null
6102          },
6103          {
6104            "name": "published",
6105            "description": "Whether there have been any classic update publishes",
6106            "args": [],
6107            "type": {
6108              "kind": "NON_NULL",
6109              "name": null,
6110              "ofType": {
6111                "kind": "SCALAR",
6112                "name": "Boolean",
6113                "ofType": null
6114              }
6115            },
6116            "isDeprecated": false,
6117            "deprecationReason": null
6118          },
6119          {
6120            "name": "pushSecurityEnabled",
6121            "description": null,
6122            "args": [],
6123            "type": {
6124              "kind": "NON_NULL",
6125              "name": null,
6126              "ofType": {
6127                "kind": "SCALAR",
6128                "name": "Boolean",
6129                "ofType": null
6130              }
6131            },
6132            "isDeprecated": false,
6133            "deprecationReason": null
6134          },
6135          {
6136            "name": "releaseChannels",
6137            "description": "Classic update release channel names (to be removed)",
6138            "args": [],
6139            "type": {
6140              "kind": "NON_NULL",
6141              "name": null,
6142              "ofType": {
6143                "kind": "LIST",
6144                "name": null,
6145                "ofType": {
6146                  "kind": "NON_NULL",
6147                  "name": null,
6148                  "ofType": {
6149                    "kind": "SCALAR",
6150                    "name": "String",
6151                    "ofType": null
6152                  }
6153                }
6154              }
6155            },
6156            "isDeprecated": false,
6157            "deprecationReason": null
6158          },
6159          {
6160            "name": "requiresAccessTokenForPushSecurity",
6161            "description": null,
6162            "args": [],
6163            "type": {
6164              "kind": "NON_NULL",
6165              "name": null,
6166              "ofType": {
6167                "kind": "SCALAR",
6168                "name": "Boolean",
6169                "ofType": null
6170              }
6171            },
6172            "isDeprecated": true,
6173            "deprecationReason": "Legacy access tokens are deprecated"
6174          },
6175          {
6176            "name": "sdkVersion",
6177            "description": "SDK version of the latest classic update publish, 0.0.0 otherwise",
6178            "args": [],
6179            "type": {
6180              "kind": "NON_NULL",
6181              "name": null,
6182              "ofType": {
6183                "kind": "SCALAR",
6184                "name": "String",
6185                "ofType": null
6186              }
6187            },
6188            "isDeprecated": false,
6189            "deprecationReason": null
6190          },
6191          {
6192            "name": "slug",
6193            "description": null,
6194            "args": [],
6195            "type": {
6196              "kind": "NON_NULL",
6197              "name": null,
6198              "ofType": {
6199                "kind": "SCALAR",
6200                "name": "String",
6201                "ofType": null
6202              }
6203            },
6204            "isDeprecated": false,
6205            "deprecationReason": null
6206          },
6207          {
6208            "name": "submissions",
6209            "description": "EAS Submissions associated with this app",
6210            "args": [
6211              {
6212                "name": "filter",
6213                "description": null,
6214                "type": {
6215                  "kind": "NON_NULL",
6216                  "name": null,
6217                  "ofType": {
6218                    "kind": "INPUT_OBJECT",
6219                    "name": "SubmissionFilter",
6220                    "ofType": null
6221                  }
6222                },
6223                "defaultValue": null,
6224                "isDeprecated": false,
6225                "deprecationReason": null
6226              },
6227              {
6228                "name": "limit",
6229                "description": null,
6230                "type": {
6231                  "kind": "NON_NULL",
6232                  "name": null,
6233                  "ofType": {
6234                    "kind": "SCALAR",
6235                    "name": "Int",
6236                    "ofType": null
6237                  }
6238                },
6239                "defaultValue": null,
6240                "isDeprecated": false,
6241                "deprecationReason": null
6242              },
6243              {
6244                "name": "offset",
6245                "description": null,
6246                "type": {
6247                  "kind": "NON_NULL",
6248                  "name": null,
6249                  "ofType": {
6250                    "kind": "SCALAR",
6251                    "name": "Int",
6252                    "ofType": null
6253                  }
6254                },
6255                "defaultValue": null,
6256                "isDeprecated": false,
6257                "deprecationReason": null
6258              }
6259            ],
6260            "type": {
6261              "kind": "NON_NULL",
6262              "name": null,
6263              "ofType": {
6264                "kind": "LIST",
6265                "name": null,
6266                "ofType": {
6267                  "kind": "NON_NULL",
6268                  "name": null,
6269                  "ofType": {
6270                    "kind": "OBJECT",
6271                    "name": "Submission",
6272                    "ofType": null
6273                  }
6274                }
6275              }
6276            },
6277            "isDeprecated": false,
6278            "deprecationReason": null
6279          },
6280          {
6281            "name": "trendScore",
6282            "description": null,
6283            "args": [],
6284            "type": {
6285              "kind": "NON_NULL",
6286              "name": null,
6287              "ofType": {
6288                "kind": "SCALAR",
6289                "name": "Float",
6290                "ofType": null
6291              }
6292            },
6293            "isDeprecated": true,
6294            "deprecationReason": "'likes' have been deprecated."
6295          },
6296          {
6297            "name": "updateBranchByName",
6298            "description": "get an EAS branch owned by the app by name",
6299            "args": [
6300              {
6301                "name": "name",
6302                "description": null,
6303                "type": {
6304                  "kind": "NON_NULL",
6305                  "name": null,
6306                  "ofType": {
6307                    "kind": "SCALAR",
6308                    "name": "String",
6309                    "ofType": null
6310                  }
6311                },
6312                "defaultValue": null,
6313                "isDeprecated": false,
6314                "deprecationReason": null
6315              }
6316            ],
6317            "type": {
6318              "kind": "OBJECT",
6319              "name": "UpdateBranch",
6320              "ofType": null
6321            },
6322            "isDeprecated": false,
6323            "deprecationReason": null
6324          },
6325          {
6326            "name": "updateBranches",
6327            "description": "EAS branches owned by an app",
6328            "args": [
6329              {
6330                "name": "limit",
6331                "description": null,
6332                "type": {
6333                  "kind": "NON_NULL",
6334                  "name": null,
6335                  "ofType": {
6336                    "kind": "SCALAR",
6337                    "name": "Int",
6338                    "ofType": null
6339                  }
6340                },
6341                "defaultValue": null,
6342                "isDeprecated": false,
6343                "deprecationReason": null
6344              },
6345              {
6346                "name": "offset",
6347                "description": null,
6348                "type": {
6349                  "kind": "NON_NULL",
6350                  "name": null,
6351                  "ofType": {
6352                    "kind": "SCALAR",
6353                    "name": "Int",
6354                    "ofType": null
6355                  }
6356                },
6357                "defaultValue": null,
6358                "isDeprecated": false,
6359                "deprecationReason": null
6360              }
6361            ],
6362            "type": {
6363              "kind": "NON_NULL",
6364              "name": null,
6365              "ofType": {
6366                "kind": "LIST",
6367                "name": null,
6368                "ofType": {
6369                  "kind": "NON_NULL",
6370                  "name": null,
6371                  "ofType": {
6372                    "kind": "OBJECT",
6373                    "name": "UpdateBranch",
6374                    "ofType": null
6375                  }
6376                }
6377              }
6378            },
6379            "isDeprecated": false,
6380            "deprecationReason": null
6381          },
6382          {
6383            "name": "updateChannelByName",
6384            "description": "get an EAS channel owned by the app by name",
6385            "args": [
6386              {
6387                "name": "name",
6388                "description": null,
6389                "type": {
6390                  "kind": "NON_NULL",
6391                  "name": null,
6392                  "ofType": {
6393                    "kind": "SCALAR",
6394                    "name": "String",
6395                    "ofType": null
6396                  }
6397                },
6398                "defaultValue": null,
6399                "isDeprecated": false,
6400                "deprecationReason": null
6401              }
6402            ],
6403            "type": {
6404              "kind": "OBJECT",
6405              "name": "UpdateChannel",
6406              "ofType": null
6407            },
6408            "isDeprecated": false,
6409            "deprecationReason": null
6410          },
6411          {
6412            "name": "updateChannels",
6413            "description": "EAS channels owned by an app",
6414            "args": [
6415              {
6416                "name": "limit",
6417                "description": null,
6418                "type": {
6419                  "kind": "NON_NULL",
6420                  "name": null,
6421                  "ofType": {
6422                    "kind": "SCALAR",
6423                    "name": "Int",
6424                    "ofType": null
6425                  }
6426                },
6427                "defaultValue": null,
6428                "isDeprecated": false,
6429                "deprecationReason": null
6430              },
6431              {
6432                "name": "offset",
6433                "description": null,
6434                "type": {
6435                  "kind": "NON_NULL",
6436                  "name": null,
6437                  "ofType": {
6438                    "kind": "SCALAR",
6439                    "name": "Int",
6440                    "ofType": null
6441                  }
6442                },
6443                "defaultValue": null,
6444                "isDeprecated": false,
6445                "deprecationReason": null
6446              }
6447            ],
6448            "type": {
6449              "kind": "NON_NULL",
6450              "name": null,
6451              "ofType": {
6452                "kind": "LIST",
6453                "name": null,
6454                "ofType": {
6455                  "kind": "NON_NULL",
6456                  "name": null,
6457                  "ofType": {
6458                    "kind": "OBJECT",
6459                    "name": "UpdateChannel",
6460                    "ofType": null
6461                  }
6462                }
6463              }
6464            },
6465            "isDeprecated": false,
6466            "deprecationReason": null
6467          },
6468          {
6469            "name": "updated",
6470            "description": "Time of last classic update publish",
6471            "args": [],
6472            "type": {
6473              "kind": "NON_NULL",
6474              "name": null,
6475              "ofType": {
6476                "kind": "SCALAR",
6477                "name": "DateTime",
6478                "ofType": null
6479              }
6480            },
6481            "isDeprecated": false,
6482            "deprecationReason": null
6483          },
6484          {
6485            "name": "updates",
6486            "description": "EAS updates owned by an app",
6487            "args": [
6488              {
6489                "name": "limit",
6490                "description": null,
6491                "type": {
6492                  "kind": "NON_NULL",
6493                  "name": null,
6494                  "ofType": {
6495                    "kind": "SCALAR",
6496                    "name": "Int",
6497                    "ofType": null
6498                  }
6499                },
6500                "defaultValue": null,
6501                "isDeprecated": false,
6502                "deprecationReason": null
6503              },
6504              {
6505                "name": "offset",
6506                "description": null,
6507                "type": {
6508                  "kind": "NON_NULL",
6509                  "name": null,
6510                  "ofType": {
6511                    "kind": "SCALAR",
6512                    "name": "Int",
6513                    "ofType": null
6514                  }
6515                },
6516                "defaultValue": null,
6517                "isDeprecated": false,
6518                "deprecationReason": null
6519              }
6520            ],
6521            "type": {
6522              "kind": "NON_NULL",
6523              "name": null,
6524              "ofType": {
6525                "kind": "LIST",
6526                "name": null,
6527                "ofType": {
6528                  "kind": "NON_NULL",
6529                  "name": null,
6530                  "ofType": {
6531                    "kind": "OBJECT",
6532                    "name": "Update",
6533                    "ofType": null
6534                  }
6535                }
6536              }
6537            },
6538            "isDeprecated": false,
6539            "deprecationReason": null
6540          },
6541          {
6542            "name": "username",
6543            "description": null,
6544            "args": [],
6545            "type": {
6546              "kind": "NON_NULL",
6547              "name": null,
6548              "ofType": {
6549                "kind": "SCALAR",
6550                "name": "String",
6551                "ofType": null
6552              }
6553            },
6554            "isDeprecated": true,
6555            "deprecationReason": "Use ownerAccount.name instead"
6556          },
6557          {
6558            "name": "users",
6559            "description": null,
6560            "args": [],
6561            "type": {
6562              "kind": "LIST",
6563              "name": null,
6564              "ofType": {
6565                "kind": "OBJECT",
6566                "name": "User",
6567                "ofType": null
6568              }
6569            },
6570            "isDeprecated": true,
6571            "deprecationReason": "No longer supported"
6572          },
6573          {
6574            "name": "webhooks",
6575            "description": "Webhooks for an app",
6576            "args": [
6577              {
6578                "name": "filter",
6579                "description": null,
6580                "type": {
6581                  "kind": "INPUT_OBJECT",
6582                  "name": "WebhookFilter",
6583                  "ofType": null
6584                },
6585                "defaultValue": null,
6586                "isDeprecated": false,
6587                "deprecationReason": null
6588              }
6589            ],
6590            "type": {
6591              "kind": "NON_NULL",
6592              "name": null,
6593              "ofType": {
6594                "kind": "LIST",
6595                "name": null,
6596                "ofType": {
6597                  "kind": "NON_NULL",
6598                  "name": null,
6599                  "ofType": {
6600                    "kind": "OBJECT",
6601                    "name": "Webhook",
6602                    "ofType": null
6603                  }
6604                }
6605              }
6606            },
6607            "isDeprecated": false,
6608            "deprecationReason": null
6609          }
6610        ],
6611        "inputFields": null,
6612        "interfaces": [
6613          {
6614            "kind": "INTERFACE",
6615            "name": "Project",
6616            "ofType": null
6617          }
6618        ],
6619        "enumValues": null,
6620        "possibleTypes": null
6621      },
6622      {
6623        "kind": "INPUT_OBJECT",
6624        "name": "AppDataInput",
6625        "description": null,
6626        "fields": null,
6627        "inputFields": [
6628          {
6629            "name": "id",
6630            "description": null,
6631            "type": {
6632              "kind": "NON_NULL",
6633              "name": null,
6634              "ofType": {
6635                "kind": "SCALAR",
6636                "name": "ID",
6637                "ofType": null
6638              }
6639            },
6640            "defaultValue": null,
6641            "isDeprecated": false,
6642            "deprecationReason": null
6643          },
6644          {
6645            "name": "privacy",
6646            "description": null,
6647            "type": {
6648              "kind": "SCALAR",
6649              "name": "String",
6650              "ofType": null
6651            },
6652            "defaultValue": null,
6653            "isDeprecated": false,
6654            "deprecationReason": null
6655          }
6656        ],
6657        "interfaces": null,
6658        "enumValues": null,
6659        "possibleTypes": null
6660      },
6661      {
6662        "kind": "OBJECT",
6663        "name": "AppIcon",
6664        "description": null,
6665        "fields": [
6666          {
6667            "name": "colorPalette",
6668            "description": null,
6669            "args": [],
6670            "type": {
6671              "kind": "SCALAR",
6672              "name": "JSON",
6673              "ofType": null
6674            },
6675            "isDeprecated": true,
6676            "deprecationReason": "No longer supported"
6677          },
6678          {
6679            "name": "originalUrl",
6680            "description": null,
6681            "args": [],
6682            "type": {
6683              "kind": "NON_NULL",
6684              "name": null,
6685              "ofType": {
6686                "kind": "SCALAR",
6687                "name": "String",
6688                "ofType": null
6689              }
6690            },
6691            "isDeprecated": false,
6692            "deprecationReason": null
6693          },
6694          {
6695            "name": "primaryColor",
6696            "description": null,
6697            "args": [],
6698            "type": {
6699              "kind": "SCALAR",
6700              "name": "String",
6701              "ofType": null
6702            },
6703            "isDeprecated": false,
6704            "deprecationReason": null
6705          },
6706          {
6707            "name": "url",
6708            "description": null,
6709            "args": [],
6710            "type": {
6711              "kind": "NON_NULL",
6712              "name": null,
6713              "ofType": {
6714                "kind": "SCALAR",
6715                "name": "String",
6716                "ofType": null
6717              }
6718            },
6719            "isDeprecated": false,
6720            "deprecationReason": null
6721          }
6722        ],
6723        "inputFields": null,
6724        "interfaces": [],
6725        "enumValues": null,
6726        "possibleTypes": null
6727      },
6728      {
6729        "kind": "INPUT_OBJECT",
6730        "name": "AppInfoInput",
6731        "description": null,
6732        "fields": null,
6733        "inputFields": [
6734          {
6735            "name": "displayName",
6736            "description": null,
6737            "type": {
6738              "kind": "SCALAR",
6739              "name": "String",
6740              "ofType": null
6741            },
6742            "defaultValue": null,
6743            "isDeprecated": false,
6744            "deprecationReason": null
6745          }
6746        ],
6747        "interfaces": null,
6748        "enumValues": null,
6749        "possibleTypes": null
6750      },
6751      {
6752        "kind": "INPUT_OBJECT",
6753        "name": "AppInput",
6754        "description": null,
6755        "fields": null,
6756        "inputFields": [
6757          {
6758            "name": "accountId",
6759            "description": null,
6760            "type": {
6761              "kind": "NON_NULL",
6762              "name": null,
6763              "ofType": {
6764                "kind": "SCALAR",
6765                "name": "ID",
6766                "ofType": null
6767              }
6768            },
6769            "defaultValue": null,
6770            "isDeprecated": false,
6771            "deprecationReason": null
6772          },
6773          {
6774            "name": "appInfo",
6775            "description": null,
6776            "type": {
6777              "kind": "INPUT_OBJECT",
6778              "name": "AppInfoInput",
6779              "ofType": null
6780            },
6781            "defaultValue": null,
6782            "isDeprecated": false,
6783            "deprecationReason": null
6784          },
6785          {
6786            "name": "privacy",
6787            "description": null,
6788            "type": {
6789              "kind": "NON_NULL",
6790              "name": null,
6791              "ofType": {
6792                "kind": "ENUM",
6793                "name": "AppPrivacy",
6794                "ofType": null
6795              }
6796            },
6797            "defaultValue": null,
6798            "isDeprecated": false,
6799            "deprecationReason": null
6800          },
6801          {
6802            "name": "projectName",
6803            "description": null,
6804            "type": {
6805              "kind": "NON_NULL",
6806              "name": null,
6807              "ofType": {
6808                "kind": "SCALAR",
6809                "name": "String",
6810                "ofType": null
6811              }
6812            },
6813            "defaultValue": null,
6814            "isDeprecated": false,
6815            "deprecationReason": null
6816          }
6817        ],
6818        "interfaces": null,
6819        "enumValues": null,
6820        "possibleTypes": null
6821      },
6822      {
6823        "kind": "OBJECT",
6824        "name": "AppMutation",
6825        "description": null,
6826        "fields": [
6827          {
6828            "name": "createApp",
6829            "description": "Create an unpublished app",
6830            "args": [
6831              {
6832                "name": "appInput",
6833                "description": null,
6834                "type": {
6835                  "kind": "NON_NULL",
6836                  "name": null,
6837                  "ofType": {
6838                    "kind": "INPUT_OBJECT",
6839                    "name": "AppInput",
6840                    "ofType": null
6841                  }
6842                },
6843                "defaultValue": null,
6844                "isDeprecated": false,
6845                "deprecationReason": null
6846              }
6847            ],
6848            "type": {
6849              "kind": "NON_NULL",
6850              "name": null,
6851              "ofType": {
6852                "kind": "OBJECT",
6853                "name": "App",
6854                "ofType": null
6855              }
6856            },
6857            "isDeprecated": false,
6858            "deprecationReason": null
6859          },
6860          {
6861            "name": "grantAccess",
6862            "description": null,
6863            "args": [
6864              {
6865                "name": "accessLevel",
6866                "description": null,
6867                "type": {
6868                  "kind": "SCALAR",
6869                  "name": "String",
6870                  "ofType": null
6871                },
6872                "defaultValue": null,
6873                "isDeprecated": false,
6874                "deprecationReason": null
6875              },
6876              {
6877                "name": "toUser",
6878                "description": null,
6879                "type": {
6880                  "kind": "NON_NULL",
6881                  "name": null,
6882                  "ofType": {
6883                    "kind": "SCALAR",
6884                    "name": "ID",
6885                    "ofType": null
6886                  }
6887                },
6888                "defaultValue": null,
6889                "isDeprecated": false,
6890                "deprecationReason": null
6891              }
6892            ],
6893            "type": {
6894              "kind": "OBJECT",
6895              "name": "App",
6896              "ofType": null
6897            },
6898            "isDeprecated": true,
6899            "deprecationReason": "No longer supported"
6900          },
6901          {
6902            "name": "setAppInfo",
6903            "description": "Set display info for app",
6904            "args": [
6905              {
6906                "name": "appId",
6907                "description": null,
6908                "type": {
6909                  "kind": "NON_NULL",
6910                  "name": null,
6911                  "ofType": {
6912                    "kind": "SCALAR",
6913                    "name": "ID",
6914                    "ofType": null
6915                  }
6916                },
6917                "defaultValue": null,
6918                "isDeprecated": false,
6919                "deprecationReason": null
6920              },
6921              {
6922                "name": "appInfo",
6923                "description": null,
6924                "type": {
6925                  "kind": "NON_NULL",
6926                  "name": null,
6927                  "ofType": {
6928                    "kind": "INPUT_OBJECT",
6929                    "name": "AppInfoInput",
6930                    "ofType": null
6931                  }
6932                },
6933                "defaultValue": null,
6934                "isDeprecated": false,
6935                "deprecationReason": null
6936              }
6937            ],
6938            "type": {
6939              "kind": "NON_NULL",
6940              "name": null,
6941              "ofType": {
6942                "kind": "OBJECT",
6943                "name": "App",
6944                "ofType": null
6945              }
6946            },
6947            "isDeprecated": false,
6948            "deprecationReason": null
6949          },
6950          {
6951            "name": "setPushSecurityEnabled",
6952            "description": "Require api token to send push notifs for experience",
6953            "args": [
6954              {
6955                "name": "appId",
6956                "description": null,
6957                "type": {
6958                  "kind": "NON_NULL",
6959                  "name": null,
6960                  "ofType": {
6961                    "kind": "SCALAR",
6962                    "name": "ID",
6963                    "ofType": null
6964                  }
6965                },
6966                "defaultValue": null,
6967                "isDeprecated": false,
6968                "deprecationReason": null
6969              },
6970              {
6971                "name": "pushSecurityEnabled",
6972                "description": null,
6973                "type": {
6974                  "kind": "NON_NULL",
6975                  "name": null,
6976                  "ofType": {
6977                    "kind": "SCALAR",
6978                    "name": "Boolean",
6979                    "ofType": null
6980                  }
6981                },
6982                "defaultValue": null,
6983                "isDeprecated": false,
6984                "deprecationReason": null
6985              }
6986            ],
6987            "type": {
6988              "kind": "NON_NULL",
6989              "name": null,
6990              "ofType": {
6991                "kind": "OBJECT",
6992                "name": "App",
6993                "ofType": null
6994              }
6995            },
6996            "isDeprecated": false,
6997            "deprecationReason": null
6998          }
6999        ],
7000        "inputFields": null,
7001        "interfaces": [],
7002        "enumValues": null,
7003        "possibleTypes": null
7004      },
7005      {
7006        "kind": "ENUM",
7007        "name": "AppPlatform",
7008        "description": null,
7009        "fields": null,
7010        "inputFields": null,
7011        "interfaces": null,
7012        "enumValues": [
7013          {
7014            "name": "ANDROID",
7015            "description": null,
7016            "isDeprecated": false,
7017            "deprecationReason": null
7018          },
7019          {
7020            "name": "IOS",
7021            "description": null,
7022            "isDeprecated": false,
7023            "deprecationReason": null
7024          }
7025        ],
7026        "possibleTypes": null
7027      },
7028      {
7029        "kind": "ENUM",
7030        "name": "AppPrivacy",
7031        "description": null,
7032        "fields": null,
7033        "inputFields": null,
7034        "interfaces": null,
7035        "enumValues": [
7036          {
7037            "name": "HIDDEN",
7038            "description": null,
7039            "isDeprecated": false,
7040            "deprecationReason": null
7041          },
7042          {
7043            "name": "PUBLIC",
7044            "description": null,
7045            "isDeprecated": false,
7046            "deprecationReason": null
7047          },
7048          {
7049            "name": "UNLISTED",
7050            "description": null,
7051            "isDeprecated": false,
7052            "deprecationReason": null
7053          }
7054        ],
7055        "possibleTypes": null
7056      },
7057      {
7058        "kind": "OBJECT",
7059        "name": "AppQuery",
7060        "description": null,
7061        "fields": [
7062          {
7063            "name": "all",
7064            "description": "Public apps in the app directory",
7065            "args": [
7066              {
7067                "name": "filter",
7068                "description": "Filter to use to filter public app list",
7069                "type": {
7070                  "kind": "NON_NULL",
7071                  "name": null,
7072                  "ofType": {
7073                    "kind": "ENUM",
7074                    "name": "AppsFilter",
7075                    "ofType": null
7076                  }
7077                },
7078                "defaultValue": null,
7079                "isDeprecated": false,
7080                "deprecationReason": null
7081              },
7082              {
7083                "name": "limit",
7084                "description": null,
7085                "type": {
7086                  "kind": "SCALAR",
7087                  "name": "Int",
7088                  "ofType": null
7089                },
7090                "defaultValue": null,
7091                "isDeprecated": false,
7092                "deprecationReason": null
7093              },
7094              {
7095                "name": "offset",
7096                "description": null,
7097                "type": {
7098                  "kind": "SCALAR",
7099                  "name": "Int",
7100                  "ofType": null
7101                },
7102                "defaultValue": null,
7103                "isDeprecated": false,
7104                "deprecationReason": null
7105              },
7106              {
7107                "name": "sort",
7108                "description": "Method to sort by",
7109                "type": {
7110                  "kind": "NON_NULL",
7111                  "name": null,
7112                  "ofType": {
7113                    "kind": "ENUM",
7114                    "name": "AppSort",
7115                    "ofType": null
7116                  }
7117                },
7118                "defaultValue": null,
7119                "isDeprecated": false,
7120                "deprecationReason": null
7121              }
7122            ],
7123            "type": {
7124              "kind": "NON_NULL",
7125              "name": null,
7126              "ofType": {
7127                "kind": "LIST",
7128                "name": null,
7129                "ofType": {
7130                  "kind": "NON_NULL",
7131                  "name": null,
7132                  "ofType": {
7133                    "kind": "OBJECT",
7134                    "name": "App",
7135                    "ofType": null
7136                  }
7137                }
7138              }
7139            },
7140            "isDeprecated": true,
7141            "deprecationReason": "App directory no longer supported"
7142          },
7143          {
7144            "name": "byFullName",
7145            "description": null,
7146            "args": [
7147              {
7148                "name": "fullName",
7149                "description": "App full name used to look up app",
7150                "type": {
7151                  "kind": "NON_NULL",
7152                  "name": null,
7153                  "ofType": {
7154                    "kind": "SCALAR",
7155                    "name": "String",
7156                    "ofType": null
7157                  }
7158                },
7159                "defaultValue": null,
7160                "isDeprecated": false,
7161                "deprecationReason": null
7162              }
7163            ],
7164            "type": {
7165              "kind": "NON_NULL",
7166              "name": null,
7167              "ofType": {
7168                "kind": "OBJECT",
7169                "name": "App",
7170                "ofType": null
7171              }
7172            },
7173            "isDeprecated": false,
7174            "deprecationReason": null
7175          },
7176          {
7177            "name": "byId",
7178            "description": "Look up app by app id",
7179            "args": [
7180              {
7181                "name": "appId",
7182                "description": null,
7183                "type": {
7184                  "kind": "NON_NULL",
7185                  "name": null,
7186                  "ofType": {
7187                    "kind": "SCALAR",
7188                    "name": "String",
7189                    "ofType": null
7190                  }
7191                },
7192                "defaultValue": null,
7193                "isDeprecated": false,
7194                "deprecationReason": null
7195              }
7196            ],
7197            "type": {
7198              "kind": "NON_NULL",
7199              "name": null,
7200              "ofType": {
7201                "kind": "OBJECT",
7202                "name": "App",
7203                "ofType": null
7204              }
7205            },
7206            "isDeprecated": false,
7207            "deprecationReason": null
7208          }
7209        ],
7210        "inputFields": null,
7211        "interfaces": [],
7212        "enumValues": null,
7213        "possibleTypes": null
7214      },
7215      {
7216        "kind": "OBJECT",
7217        "name": "AppRelease",
7218        "description": null,
7219        "fields": [
7220          {
7221            "name": "hash",
7222            "description": null,
7223            "args": [],
7224            "type": {
7225              "kind": "NON_NULL",
7226              "name": null,
7227              "ofType": {
7228                "kind": "SCALAR",
7229                "name": "String",
7230                "ofType": null
7231              }
7232            },
7233            "isDeprecated": false,
7234            "deprecationReason": null
7235          },
7236          {
7237            "name": "id",
7238            "description": null,
7239            "args": [],
7240            "type": {
7241              "kind": "NON_NULL",
7242              "name": null,
7243              "ofType": {
7244                "kind": "SCALAR",
7245                "name": "ID",
7246                "ofType": null
7247              }
7248            },
7249            "isDeprecated": false,
7250            "deprecationReason": null
7251          },
7252          {
7253            "name": "manifest",
7254            "description": null,
7255            "args": [],
7256            "type": {
7257              "kind": "NON_NULL",
7258              "name": null,
7259              "ofType": {
7260                "kind": "SCALAR",
7261                "name": "JSON",
7262                "ofType": null
7263              }
7264            },
7265            "isDeprecated": false,
7266            "deprecationReason": null
7267          },
7268          {
7269            "name": "publishedTime",
7270            "description": null,
7271            "args": [],
7272            "type": {
7273              "kind": "NON_NULL",
7274              "name": null,
7275              "ofType": {
7276                "kind": "SCALAR",
7277                "name": "DateTime",
7278                "ofType": null
7279              }
7280            },
7281            "isDeprecated": false,
7282            "deprecationReason": null
7283          },
7284          {
7285            "name": "publishingUsername",
7286            "description": null,
7287            "args": [],
7288            "type": {
7289              "kind": "NON_NULL",
7290              "name": null,
7291              "ofType": {
7292                "kind": "SCALAR",
7293                "name": "String",
7294                "ofType": null
7295              }
7296            },
7297            "isDeprecated": false,
7298            "deprecationReason": null
7299          },
7300          {
7301            "name": "runtimeVersion",
7302            "description": null,
7303            "args": [],
7304            "type": {
7305              "kind": "SCALAR",
7306              "name": "String",
7307              "ofType": null
7308            },
7309            "isDeprecated": false,
7310            "deprecationReason": null
7311          },
7312          {
7313            "name": "s3Key",
7314            "description": null,
7315            "args": [],
7316            "type": {
7317              "kind": "NON_NULL",
7318              "name": null,
7319              "ofType": {
7320                "kind": "SCALAR",
7321                "name": "String",
7322                "ofType": null
7323              }
7324            },
7325            "isDeprecated": false,
7326            "deprecationReason": null
7327          },
7328          {
7329            "name": "s3Url",
7330            "description": null,
7331            "args": [],
7332            "type": {
7333              "kind": "NON_NULL",
7334              "name": null,
7335              "ofType": {
7336                "kind": "SCALAR",
7337                "name": "String",
7338                "ofType": null
7339              }
7340            },
7341            "isDeprecated": false,
7342            "deprecationReason": null
7343          },
7344          {
7345            "name": "sdkVersion",
7346            "description": null,
7347            "args": [],
7348            "type": {
7349              "kind": "NON_NULL",
7350              "name": null,
7351              "ofType": {
7352                "kind": "SCALAR",
7353                "name": "String",
7354                "ofType": null
7355              }
7356            },
7357            "isDeprecated": false,
7358            "deprecationReason": null
7359          },
7360          {
7361            "name": "version",
7362            "description": null,
7363            "args": [],
7364            "type": {
7365              "kind": "NON_NULL",
7366              "name": null,
7367              "ofType": {
7368                "kind": "SCALAR",
7369                "name": "String",
7370                "ofType": null
7371              }
7372            },
7373            "isDeprecated": false,
7374            "deprecationReason": null
7375          }
7376        ],
7377        "inputFields": null,
7378        "interfaces": [],
7379        "enumValues": null,
7380        "possibleTypes": null
7381      },
7382      {
7383        "kind": "ENUM",
7384        "name": "AppSort",
7385        "description": null,
7386        "fields": null,
7387        "inputFields": null,
7388        "interfaces": null,
7389        "enumValues": [
7390          {
7391            "name": "RECENTLY_PUBLISHED",
7392            "description": "Sort by recently published",
7393            "isDeprecated": false,
7394            "deprecationReason": null
7395          },
7396          {
7397            "name": "VIEWED",
7398            "description": "Sort by highest trendScore",
7399            "isDeprecated": false,
7400            "deprecationReason": null
7401          }
7402        ],
7403        "possibleTypes": null
7404      },
7405      {
7406        "kind": "OBJECT",
7407        "name": "AppStoreConnectApiKey",
7408        "description": null,
7409        "fields": [
7410          {
7411            "name": "account",
7412            "description": null,
7413            "args": [],
7414            "type": {
7415              "kind": "NON_NULL",
7416              "name": null,
7417              "ofType": {
7418                "kind": "OBJECT",
7419                "name": "Account",
7420                "ofType": null
7421              }
7422            },
7423            "isDeprecated": false,
7424            "deprecationReason": null
7425          },
7426          {
7427            "name": "appleTeam",
7428            "description": null,
7429            "args": [],
7430            "type": {
7431              "kind": "OBJECT",
7432              "name": "AppleTeam",
7433              "ofType": null
7434            },
7435            "isDeprecated": false,
7436            "deprecationReason": null
7437          },
7438          {
7439            "name": "createdAt",
7440            "description": null,
7441            "args": [],
7442            "type": {
7443              "kind": "NON_NULL",
7444              "name": null,
7445              "ofType": {
7446                "kind": "SCALAR",
7447                "name": "DateTime",
7448                "ofType": null
7449              }
7450            },
7451            "isDeprecated": false,
7452            "deprecationReason": null
7453          },
7454          {
7455            "name": "id",
7456            "description": null,
7457            "args": [],
7458            "type": {
7459              "kind": "NON_NULL",
7460              "name": null,
7461              "ofType": {
7462                "kind": "SCALAR",
7463                "name": "ID",
7464                "ofType": null
7465              }
7466            },
7467            "isDeprecated": false,
7468            "deprecationReason": null
7469          },
7470          {
7471            "name": "issuerIdentifier",
7472            "description": null,
7473            "args": [],
7474            "type": {
7475              "kind": "NON_NULL",
7476              "name": null,
7477              "ofType": {
7478                "kind": "SCALAR",
7479                "name": "String",
7480                "ofType": null
7481              }
7482            },
7483            "isDeprecated": false,
7484            "deprecationReason": null
7485          },
7486          {
7487            "name": "keyIdentifier",
7488            "description": null,
7489            "args": [],
7490            "type": {
7491              "kind": "NON_NULL",
7492              "name": null,
7493              "ofType": {
7494                "kind": "SCALAR",
7495                "name": "String",
7496                "ofType": null
7497              }
7498            },
7499            "isDeprecated": false,
7500            "deprecationReason": null
7501          },
7502          {
7503            "name": "name",
7504            "description": null,
7505            "args": [],
7506            "type": {
7507              "kind": "SCALAR",
7508              "name": "String",
7509              "ofType": null
7510            },
7511            "isDeprecated": false,
7512            "deprecationReason": null
7513          },
7514          {
7515            "name": "roles",
7516            "description": null,
7517            "args": [],
7518            "type": {
7519              "kind": "LIST",
7520              "name": null,
7521              "ofType": {
7522                "kind": "NON_NULL",
7523                "name": null,
7524                "ofType": {
7525                  "kind": "ENUM",
7526                  "name": "AppStoreConnectUserRole",
7527                  "ofType": null
7528                }
7529              }
7530            },
7531            "isDeprecated": false,
7532            "deprecationReason": null
7533          },
7534          {
7535            "name": "updatedAt",
7536            "description": null,
7537            "args": [],
7538            "type": {
7539              "kind": "NON_NULL",
7540              "name": null,
7541              "ofType": {
7542                "kind": "SCALAR",
7543                "name": "DateTime",
7544                "ofType": null
7545              }
7546            },
7547            "isDeprecated": false,
7548            "deprecationReason": null
7549          }
7550        ],
7551        "inputFields": null,
7552        "interfaces": [],
7553        "enumValues": null,
7554        "possibleTypes": null
7555      },
7556      {
7557        "kind": "INPUT_OBJECT",
7558        "name": "AppStoreConnectApiKeyInput",
7559        "description": null,
7560        "fields": null,
7561        "inputFields": [
7562          {
7563            "name": "appleTeamId",
7564            "description": null,
7565            "type": {
7566              "kind": "SCALAR",
7567              "name": "ID",
7568              "ofType": null
7569            },
7570            "defaultValue": null,
7571            "isDeprecated": false,
7572            "deprecationReason": null
7573          },
7574          {
7575            "name": "issuerIdentifier",
7576            "description": null,
7577            "type": {
7578              "kind": "NON_NULL",
7579              "name": null,
7580              "ofType": {
7581                "kind": "SCALAR",
7582                "name": "String",
7583                "ofType": null
7584              }
7585            },
7586            "defaultValue": null,
7587            "isDeprecated": false,
7588            "deprecationReason": null
7589          },
7590          {
7591            "name": "keyIdentifier",
7592            "description": null,
7593            "type": {
7594              "kind": "NON_NULL",
7595              "name": null,
7596              "ofType": {
7597                "kind": "SCALAR",
7598                "name": "String",
7599                "ofType": null
7600              }
7601            },
7602            "defaultValue": null,
7603            "isDeprecated": false,
7604            "deprecationReason": null
7605          },
7606          {
7607            "name": "keyP8",
7608            "description": null,
7609            "type": {
7610              "kind": "NON_NULL",
7611              "name": null,
7612              "ofType": {
7613                "kind": "SCALAR",
7614                "name": "String",
7615                "ofType": null
7616              }
7617            },
7618            "defaultValue": null,
7619            "isDeprecated": false,
7620            "deprecationReason": null
7621          },
7622          {
7623            "name": "name",
7624            "description": null,
7625            "type": {
7626              "kind": "SCALAR",
7627              "name": "String",
7628              "ofType": null
7629            },
7630            "defaultValue": null,
7631            "isDeprecated": false,
7632            "deprecationReason": null
7633          },
7634          {
7635            "name": "roles",
7636            "description": null,
7637            "type": {
7638              "kind": "LIST",
7639              "name": null,
7640              "ofType": {
7641                "kind": "NON_NULL",
7642                "name": null,
7643                "ofType": {
7644                  "kind": "ENUM",
7645                  "name": "AppStoreConnectUserRole",
7646                  "ofType": null
7647                }
7648              }
7649            },
7650            "defaultValue": null,
7651            "isDeprecated": false,
7652            "deprecationReason": null
7653          }
7654        ],
7655        "interfaces": null,
7656        "enumValues": null,
7657        "possibleTypes": null
7658      },
7659      {
7660        "kind": "OBJECT",
7661        "name": "AppStoreConnectApiKeyMutation",
7662        "description": null,
7663        "fields": [
7664          {
7665            "name": "createAppStoreConnectApiKey",
7666            "description": "Create an App Store Connect Api Key for an Apple Team",
7667            "args": [
7668              {
7669                "name": "accountId",
7670                "description": null,
7671                "type": {
7672                  "kind": "NON_NULL",
7673                  "name": null,
7674                  "ofType": {
7675                    "kind": "SCALAR",
7676                    "name": "ID",
7677                    "ofType": null
7678                  }
7679                },
7680                "defaultValue": null,
7681                "isDeprecated": false,
7682                "deprecationReason": null
7683              },
7684              {
7685                "name": "appStoreConnectApiKeyInput",
7686                "description": null,
7687                "type": {
7688                  "kind": "NON_NULL",
7689                  "name": null,
7690                  "ofType": {
7691                    "kind": "INPUT_OBJECT",
7692                    "name": "AppStoreConnectApiKeyInput",
7693                    "ofType": null
7694                  }
7695                },
7696                "defaultValue": null,
7697                "isDeprecated": false,
7698                "deprecationReason": null
7699              }
7700            ],
7701            "type": {
7702              "kind": "NON_NULL",
7703              "name": null,
7704              "ofType": {
7705                "kind": "OBJECT",
7706                "name": "AppStoreConnectApiKey",
7707                "ofType": null
7708              }
7709            },
7710            "isDeprecated": false,
7711            "deprecationReason": null
7712          },
7713          {
7714            "name": "deleteAppStoreConnectApiKey",
7715            "description": "Delete an App Store Connect Api Key",
7716            "args": [
7717              {
7718                "name": "id",
7719                "description": null,
7720                "type": {
7721                  "kind": "NON_NULL",
7722                  "name": null,
7723                  "ofType": {
7724                    "kind": "SCALAR",
7725                    "name": "ID",
7726                    "ofType": null
7727                  }
7728                },
7729                "defaultValue": null,
7730                "isDeprecated": false,
7731                "deprecationReason": null
7732              }
7733            ],
7734            "type": {
7735              "kind": "NON_NULL",
7736              "name": null,
7737              "ofType": {
7738                "kind": "OBJECT",
7739                "name": "deleteAppStoreConnectApiKeyResult",
7740                "ofType": null
7741              }
7742            },
7743            "isDeprecated": false,
7744            "deprecationReason": null
7745          }
7746        ],
7747        "inputFields": null,
7748        "interfaces": [],
7749        "enumValues": null,
7750        "possibleTypes": null
7751      },
7752      {
7753        "kind": "ENUM",
7754        "name": "AppStoreConnectUserRole",
7755        "description": null,
7756        "fields": null,
7757        "inputFields": null,
7758        "interfaces": null,
7759        "enumValues": [
7760          {
7761            "name": "ACCESS_TO_REPORTS",
7762            "description": null,
7763            "isDeprecated": false,
7764            "deprecationReason": null
7765          },
7766          {
7767            "name": "ACCOUNT_HOLDER",
7768            "description": null,
7769            "isDeprecated": false,
7770            "deprecationReason": null
7771          },
7772          {
7773            "name": "ADMIN",
7774            "description": null,
7775            "isDeprecated": false,
7776            "deprecationReason": null
7777          },
7778          {
7779            "name": "APP_MANAGER",
7780            "description": null,
7781            "isDeprecated": false,
7782            "deprecationReason": null
7783          },
7784          {
7785            "name": "CLOUD_MANAGED_APP_DISTRIBUTION",
7786            "description": null,
7787            "isDeprecated": false,
7788            "deprecationReason": null
7789          },
7790          {
7791            "name": "CLOUD_MANAGED_DEVELOPER_ID",
7792            "description": null,
7793            "isDeprecated": false,
7794            "deprecationReason": null
7795          },
7796          {
7797            "name": "CREATE_APPS",
7798            "description": null,
7799            "isDeprecated": false,
7800            "deprecationReason": null
7801          },
7802          {
7803            "name": "CUSTOMER_SUPPORT",
7804            "description": null,
7805            "isDeprecated": false,
7806            "deprecationReason": null
7807          },
7808          {
7809            "name": "DEVELOPER",
7810            "description": null,
7811            "isDeprecated": false,
7812            "deprecationReason": null
7813          },
7814          {
7815            "name": "FINANCE",
7816            "description": null,
7817            "isDeprecated": false,
7818            "deprecationReason": null
7819          },
7820          {
7821            "name": "IMAGE_MANAGER",
7822            "description": null,
7823            "isDeprecated": false,
7824            "deprecationReason": null
7825          },
7826          {
7827            "name": "MARKETING",
7828            "description": null,
7829            "isDeprecated": false,
7830            "deprecationReason": null
7831          },
7832          {
7833            "name": "READ_ONLY",
7834            "description": null,
7835            "isDeprecated": false,
7836            "deprecationReason": null
7837          },
7838          {
7839            "name": "SALES",
7840            "description": null,
7841            "isDeprecated": false,
7842            "deprecationReason": null
7843          },
7844          {
7845            "name": "TECHNICAL",
7846            "description": null,
7847            "isDeprecated": false,
7848            "deprecationReason": null
7849          },
7850          {
7851            "name": "UNKNOWN",
7852            "description": null,
7853            "isDeprecated": false,
7854            "deprecationReason": null
7855          }
7856        ],
7857        "possibleTypes": null
7858      },
7859      {
7860        "kind": "OBJECT",
7861        "name": "AppleAppIdentifier",
7862        "description": null,
7863        "fields": [
7864          {
7865            "name": "account",
7866            "description": null,
7867            "args": [],
7868            "type": {
7869              "kind": "NON_NULL",
7870              "name": null,
7871              "ofType": {
7872                "kind": "OBJECT",
7873                "name": "Account",
7874                "ofType": null
7875              }
7876            },
7877            "isDeprecated": false,
7878            "deprecationReason": null
7879          },
7880          {
7881            "name": "appleTeam",
7882            "description": null,
7883            "args": [],
7884            "type": {
7885              "kind": "OBJECT",
7886              "name": "AppleTeam",
7887              "ofType": null
7888            },
7889            "isDeprecated": false,
7890            "deprecationReason": null
7891          },
7892          {
7893            "name": "bundleIdentifier",
7894            "description": null,
7895            "args": [],
7896            "type": {
7897              "kind": "NON_NULL",
7898              "name": null,
7899              "ofType": {
7900                "kind": "SCALAR",
7901                "name": "String",
7902                "ofType": null
7903              }
7904            },
7905            "isDeprecated": false,
7906            "deprecationReason": null
7907          },
7908          {
7909            "name": "id",
7910            "description": null,
7911            "args": [],
7912            "type": {
7913              "kind": "NON_NULL",
7914              "name": null,
7915              "ofType": {
7916                "kind": "SCALAR",
7917                "name": "ID",
7918                "ofType": null
7919              }
7920            },
7921            "isDeprecated": false,
7922            "deprecationReason": null
7923          },
7924          {
7925            "name": "parentAppleAppIdentifier",
7926            "description": null,
7927            "args": [],
7928            "type": {
7929              "kind": "OBJECT",
7930              "name": "AppleAppIdentifier",
7931              "ofType": null
7932            },
7933            "isDeprecated": false,
7934            "deprecationReason": null
7935          }
7936        ],
7937        "inputFields": null,
7938        "interfaces": [],
7939        "enumValues": null,
7940        "possibleTypes": null
7941      },
7942      {
7943        "kind": "INPUT_OBJECT",
7944        "name": "AppleAppIdentifierInput",
7945        "description": null,
7946        "fields": null,
7947        "inputFields": [
7948          {
7949            "name": "appleTeamId",
7950            "description": null,
7951            "type": {
7952              "kind": "SCALAR",
7953              "name": "ID",
7954              "ofType": null
7955            },
7956            "defaultValue": null,
7957            "isDeprecated": false,
7958            "deprecationReason": null
7959          },
7960          {
7961            "name": "bundleIdentifier",
7962            "description": null,
7963            "type": {
7964              "kind": "NON_NULL",
7965              "name": null,
7966              "ofType": {
7967                "kind": "SCALAR",
7968                "name": "String",
7969                "ofType": null
7970              }
7971            },
7972            "defaultValue": null,
7973            "isDeprecated": false,
7974            "deprecationReason": null
7975          },
7976          {
7977            "name": "parentAppleAppId",
7978            "description": null,
7979            "type": {
7980              "kind": "SCALAR",
7981              "name": "ID",
7982              "ofType": null
7983            },
7984            "defaultValue": null,
7985            "isDeprecated": false,
7986            "deprecationReason": null
7987          }
7988        ],
7989        "interfaces": null,
7990        "enumValues": null,
7991        "possibleTypes": null
7992      },
7993      {
7994        "kind": "OBJECT",
7995        "name": "AppleAppIdentifierMutation",
7996        "description": null,
7997        "fields": [
7998          {
7999            "name": "createAppleAppIdentifier",
8000            "description": "Create an Identifier for an iOS App",
8001            "args": [
8002              {
8003                "name": "accountId",
8004                "description": null,
8005                "type": {
8006                  "kind": "NON_NULL",
8007                  "name": null,
8008                  "ofType": {
8009                    "kind": "SCALAR",
8010                    "name": "ID",
8011                    "ofType": null
8012                  }
8013                },
8014                "defaultValue": null,
8015                "isDeprecated": false,
8016                "deprecationReason": null
8017              },
8018              {
8019                "name": "appleAppIdentifierInput",
8020                "description": null,
8021                "type": {
8022                  "kind": "NON_NULL",
8023                  "name": null,
8024                  "ofType": {
8025                    "kind": "INPUT_OBJECT",
8026                    "name": "AppleAppIdentifierInput",
8027                    "ofType": null
8028                  }
8029                },
8030                "defaultValue": null,
8031                "isDeprecated": false,
8032                "deprecationReason": null
8033              }
8034            ],
8035            "type": {
8036              "kind": "NON_NULL",
8037              "name": null,
8038              "ofType": {
8039                "kind": "OBJECT",
8040                "name": "AppleAppIdentifier",
8041                "ofType": null
8042              }
8043            },
8044            "isDeprecated": false,
8045            "deprecationReason": null
8046          }
8047        ],
8048        "inputFields": null,
8049        "interfaces": [],
8050        "enumValues": null,
8051        "possibleTypes": null
8052      },
8053      {
8054        "kind": "OBJECT",
8055        "name": "AppleDevice",
8056        "description": null,
8057        "fields": [
8058          {
8059            "name": "account",
8060            "description": null,
8061            "args": [],
8062            "type": {
8063              "kind": "NON_NULL",
8064              "name": null,
8065              "ofType": {
8066                "kind": "OBJECT",
8067                "name": "Account",
8068                "ofType": null
8069              }
8070            },
8071            "isDeprecated": false,
8072            "deprecationReason": null
8073          },
8074          {
8075            "name": "appleTeam",
8076            "description": null,
8077            "args": [],
8078            "type": {
8079              "kind": "NON_NULL",
8080              "name": null,
8081              "ofType": {
8082                "kind": "OBJECT",
8083                "name": "AppleTeam",
8084                "ofType": null
8085              }
8086            },
8087            "isDeprecated": false,
8088            "deprecationReason": null
8089          },
8090          {
8091            "name": "deviceClass",
8092            "description": null,
8093            "args": [],
8094            "type": {
8095              "kind": "ENUM",
8096              "name": "AppleDeviceClass",
8097              "ofType": null
8098            },
8099            "isDeprecated": false,
8100            "deprecationReason": null
8101          },
8102          {
8103            "name": "enabled",
8104            "description": null,
8105            "args": [],
8106            "type": {
8107              "kind": "SCALAR",
8108              "name": "Boolean",
8109              "ofType": null
8110            },
8111            "isDeprecated": false,
8112            "deprecationReason": null
8113          },
8114          {
8115            "name": "id",
8116            "description": null,
8117            "args": [],
8118            "type": {
8119              "kind": "NON_NULL",
8120              "name": null,
8121              "ofType": {
8122                "kind": "SCALAR",
8123                "name": "ID",
8124                "ofType": null
8125              }
8126            },
8127            "isDeprecated": false,
8128            "deprecationReason": null
8129          },
8130          {
8131            "name": "identifier",
8132            "description": null,
8133            "args": [],
8134            "type": {
8135              "kind": "NON_NULL",
8136              "name": null,
8137              "ofType": {
8138                "kind": "SCALAR",
8139                "name": "String",
8140                "ofType": null
8141              }
8142            },
8143            "isDeprecated": false,
8144            "deprecationReason": null
8145          },
8146          {
8147            "name": "model",
8148            "description": null,
8149            "args": [],
8150            "type": {
8151              "kind": "SCALAR",
8152              "name": "String",
8153              "ofType": null
8154            },
8155            "isDeprecated": false,
8156            "deprecationReason": null
8157          },
8158          {
8159            "name": "name",
8160            "description": null,
8161            "args": [],
8162            "type": {
8163              "kind": "SCALAR",
8164              "name": "String",
8165              "ofType": null
8166            },
8167            "isDeprecated": false,
8168            "deprecationReason": null
8169          },
8170          {
8171            "name": "softwareVersion",
8172            "description": null,
8173            "args": [],
8174            "type": {
8175              "kind": "SCALAR",
8176              "name": "String",
8177              "ofType": null
8178            },
8179            "isDeprecated": false,
8180            "deprecationReason": null
8181          }
8182        ],
8183        "inputFields": null,
8184        "interfaces": [],
8185        "enumValues": null,
8186        "possibleTypes": null
8187      },
8188      {
8189        "kind": "ENUM",
8190        "name": "AppleDeviceClass",
8191        "description": null,
8192        "fields": null,
8193        "inputFields": null,
8194        "interfaces": null,
8195        "enumValues": [
8196          {
8197            "name": "IPAD",
8198            "description": null,
8199            "isDeprecated": false,
8200            "deprecationReason": null
8201          },
8202          {
8203            "name": "IPHONE",
8204            "description": null,
8205            "isDeprecated": false,
8206            "deprecationReason": null
8207          }
8208        ],
8209        "possibleTypes": null
8210      },
8211      {
8212        "kind": "INPUT_OBJECT",
8213        "name": "AppleDeviceInput",
8214        "description": null,
8215        "fields": null,
8216        "inputFields": [
8217          {
8218            "name": "appleTeamId",
8219            "description": null,
8220            "type": {
8221              "kind": "NON_NULL",
8222              "name": null,
8223              "ofType": {
8224                "kind": "SCALAR",
8225                "name": "ID",
8226                "ofType": null
8227              }
8228            },
8229            "defaultValue": null,
8230            "isDeprecated": false,
8231            "deprecationReason": null
8232          },
8233          {
8234            "name": "deviceClass",
8235            "description": null,
8236            "type": {
8237              "kind": "ENUM",
8238              "name": "AppleDeviceClass",
8239              "ofType": null
8240            },
8241            "defaultValue": null,
8242            "isDeprecated": false,
8243            "deprecationReason": null
8244          },
8245          {
8246            "name": "enabled",
8247            "description": null,
8248            "type": {
8249              "kind": "SCALAR",
8250              "name": "Boolean",
8251              "ofType": null
8252            },
8253            "defaultValue": null,
8254            "isDeprecated": false,
8255            "deprecationReason": null
8256          },
8257          {
8258            "name": "identifier",
8259            "description": null,
8260            "type": {
8261              "kind": "NON_NULL",
8262              "name": null,
8263              "ofType": {
8264                "kind": "SCALAR",
8265                "name": "String",
8266                "ofType": null
8267              }
8268            },
8269            "defaultValue": null,
8270            "isDeprecated": false,
8271            "deprecationReason": null
8272          },
8273          {
8274            "name": "model",
8275            "description": null,
8276            "type": {
8277              "kind": "SCALAR",
8278              "name": "String",
8279              "ofType": null
8280            },
8281            "defaultValue": null,
8282            "isDeprecated": false,
8283            "deprecationReason": null
8284          },
8285          {
8286            "name": "name",
8287            "description": null,
8288            "type": {
8289              "kind": "SCALAR",
8290              "name": "String",
8291              "ofType": null
8292            },
8293            "defaultValue": null,
8294            "isDeprecated": false,
8295            "deprecationReason": null
8296          },
8297          {
8298            "name": "softwareVersion",
8299            "description": null,
8300            "type": {
8301              "kind": "SCALAR",
8302              "name": "String",
8303              "ofType": null
8304            },
8305            "defaultValue": null,
8306            "isDeprecated": false,
8307            "deprecationReason": null
8308          }
8309        ],
8310        "interfaces": null,
8311        "enumValues": null,
8312        "possibleTypes": null
8313      },
8314      {
8315        "kind": "OBJECT",
8316        "name": "AppleDeviceMutation",
8317        "description": null,
8318        "fields": [
8319          {
8320            "name": "createAppleDevice",
8321            "description": "Create an Apple Device",
8322            "args": [
8323              {
8324                "name": "accountId",
8325                "description": null,
8326                "type": {
8327                  "kind": "NON_NULL",
8328                  "name": null,
8329                  "ofType": {
8330                    "kind": "SCALAR",
8331                    "name": "ID",
8332                    "ofType": null
8333                  }
8334                },
8335                "defaultValue": null,
8336                "isDeprecated": false,
8337                "deprecationReason": null
8338              },
8339              {
8340                "name": "appleDeviceInput",
8341                "description": null,
8342                "type": {
8343                  "kind": "NON_NULL",
8344                  "name": null,
8345                  "ofType": {
8346                    "kind": "INPUT_OBJECT",
8347                    "name": "AppleDeviceInput",
8348                    "ofType": null
8349                  }
8350                },
8351                "defaultValue": null,
8352                "isDeprecated": false,
8353                "deprecationReason": null
8354              }
8355            ],
8356            "type": {
8357              "kind": "NON_NULL",
8358              "name": null,
8359              "ofType": {
8360                "kind": "OBJECT",
8361                "name": "AppleDevice",
8362                "ofType": null
8363              }
8364            },
8365            "isDeprecated": false,
8366            "deprecationReason": null
8367          },
8368          {
8369            "name": "deleteAppleDevice",
8370            "description": "Delete an Apple Device",
8371            "args": [
8372              {
8373                "name": "id",
8374                "description": null,
8375                "type": {
8376                  "kind": "NON_NULL",
8377                  "name": null,
8378                  "ofType": {
8379                    "kind": "SCALAR",
8380                    "name": "ID",
8381                    "ofType": null
8382                  }
8383                },
8384                "defaultValue": null,
8385                "isDeprecated": false,
8386                "deprecationReason": null
8387              }
8388            ],
8389            "type": {
8390              "kind": "NON_NULL",
8391              "name": null,
8392              "ofType": {
8393                "kind": "OBJECT",
8394                "name": "DeleteAppleDeviceResult",
8395                "ofType": null
8396              }
8397            },
8398            "isDeprecated": false,
8399            "deprecationReason": null
8400          }
8401        ],
8402        "inputFields": null,
8403        "interfaces": [],
8404        "enumValues": null,
8405        "possibleTypes": null
8406      },
8407      {
8408        "kind": "OBJECT",
8409        "name": "AppleDeviceRegistrationRequest",
8410        "description": null,
8411        "fields": [
8412          {
8413            "name": "account",
8414            "description": null,
8415            "args": [],
8416            "type": {
8417              "kind": "NON_NULL",
8418              "name": null,
8419              "ofType": {
8420                "kind": "OBJECT",
8421                "name": "Account",
8422                "ofType": null
8423              }
8424            },
8425            "isDeprecated": false,
8426            "deprecationReason": null
8427          },
8428          {
8429            "name": "appleTeam",
8430            "description": null,
8431            "args": [],
8432            "type": {
8433              "kind": "NON_NULL",
8434              "name": null,
8435              "ofType": {
8436                "kind": "OBJECT",
8437                "name": "AppleTeam",
8438                "ofType": null
8439              }
8440            },
8441            "isDeprecated": false,
8442            "deprecationReason": null
8443          },
8444          {
8445            "name": "id",
8446            "description": null,
8447            "args": [],
8448            "type": {
8449              "kind": "NON_NULL",
8450              "name": null,
8451              "ofType": {
8452                "kind": "SCALAR",
8453                "name": "ID",
8454                "ofType": null
8455              }
8456            },
8457            "isDeprecated": false,
8458            "deprecationReason": null
8459          }
8460        ],
8461        "inputFields": null,
8462        "interfaces": [],
8463        "enumValues": null,
8464        "possibleTypes": null
8465      },
8466      {
8467        "kind": "OBJECT",
8468        "name": "AppleDeviceRegistrationRequestMutation",
8469        "description": null,
8470        "fields": [
8471          {
8472            "name": "createAppleDeviceRegistrationRequest",
8473            "description": "Create an Apple Device registration request",
8474            "args": [
8475              {
8476                "name": "accountId",
8477                "description": null,
8478                "type": {
8479                  "kind": "NON_NULL",
8480                  "name": null,
8481                  "ofType": {
8482                    "kind": "SCALAR",
8483                    "name": "ID",
8484                    "ofType": null
8485                  }
8486                },
8487                "defaultValue": null,
8488                "isDeprecated": false,
8489                "deprecationReason": null
8490              },
8491              {
8492                "name": "appleTeamId",
8493                "description": null,
8494                "type": {
8495                  "kind": "NON_NULL",
8496                  "name": null,
8497                  "ofType": {
8498                    "kind": "SCALAR",
8499                    "name": "ID",
8500                    "ofType": null
8501                  }
8502                },
8503                "defaultValue": null,
8504                "isDeprecated": false,
8505                "deprecationReason": null
8506              }
8507            ],
8508            "type": {
8509              "kind": "NON_NULL",
8510              "name": null,
8511              "ofType": {
8512                "kind": "OBJECT",
8513                "name": "AppleDeviceRegistrationRequest",
8514                "ofType": null
8515              }
8516            },
8517            "isDeprecated": false,
8518            "deprecationReason": null
8519          }
8520        ],
8521        "inputFields": null,
8522        "interfaces": [],
8523        "enumValues": null,
8524        "possibleTypes": null
8525      },
8526      {
8527        "kind": "OBJECT",
8528        "name": "AppleDeviceRegistrationRequestQuery",
8529        "description": null,
8530        "fields": [
8531          {
8532            "name": "byId",
8533            "description": null,
8534            "args": [
8535              {
8536                "name": "id",
8537                "description": null,
8538                "type": {
8539                  "kind": "NON_NULL",
8540                  "name": null,
8541                  "ofType": {
8542                    "kind": "SCALAR",
8543                    "name": "ID",
8544                    "ofType": null
8545                  }
8546                },
8547                "defaultValue": null,
8548                "isDeprecated": false,
8549                "deprecationReason": null
8550              }
8551            ],
8552            "type": {
8553              "kind": "NON_NULL",
8554              "name": null,
8555              "ofType": {
8556                "kind": "OBJECT",
8557                "name": "AppleDeviceRegistrationRequest",
8558                "ofType": null
8559              }
8560            },
8561            "isDeprecated": false,
8562            "deprecationReason": null
8563          }
8564        ],
8565        "inputFields": null,
8566        "interfaces": [],
8567        "enumValues": null,
8568        "possibleTypes": null
8569      },
8570      {
8571        "kind": "OBJECT",
8572        "name": "AppleDistributionCertificate",
8573        "description": null,
8574        "fields": [
8575          {
8576            "name": "account",
8577            "description": null,
8578            "args": [],
8579            "type": {
8580              "kind": "NON_NULL",
8581              "name": null,
8582              "ofType": {
8583                "kind": "OBJECT",
8584                "name": "Account",
8585                "ofType": null
8586              }
8587            },
8588            "isDeprecated": false,
8589            "deprecationReason": null
8590          },
8591          {
8592            "name": "appleTeam",
8593            "description": null,
8594            "args": [],
8595            "type": {
8596              "kind": "OBJECT",
8597              "name": "AppleTeam",
8598              "ofType": null
8599            },
8600            "isDeprecated": false,
8601            "deprecationReason": null
8602          },
8603          {
8604            "name": "certificateP12",
8605            "description": null,
8606            "args": [],
8607            "type": {
8608              "kind": "SCALAR",
8609              "name": "String",
8610              "ofType": null
8611            },
8612            "isDeprecated": false,
8613            "deprecationReason": null
8614          },
8615          {
8616            "name": "certificatePassword",
8617            "description": null,
8618            "args": [],
8619            "type": {
8620              "kind": "SCALAR",
8621              "name": "String",
8622              "ofType": null
8623            },
8624            "isDeprecated": false,
8625            "deprecationReason": null
8626          },
8627          {
8628            "name": "certificatePrivateSigningKey",
8629            "description": null,
8630            "args": [],
8631            "type": {
8632              "kind": "SCALAR",
8633              "name": "String",
8634              "ofType": null
8635            },
8636            "isDeprecated": false,
8637            "deprecationReason": null
8638          },
8639          {
8640            "name": "createdAt",
8641            "description": null,
8642            "args": [],
8643            "type": {
8644              "kind": "NON_NULL",
8645              "name": null,
8646              "ofType": {
8647                "kind": "SCALAR",
8648                "name": "DateTime",
8649                "ofType": null
8650              }
8651            },
8652            "isDeprecated": false,
8653            "deprecationReason": null
8654          },
8655          {
8656            "name": "developerPortalIdentifier",
8657            "description": null,
8658            "args": [],
8659            "type": {
8660              "kind": "SCALAR",
8661              "name": "String",
8662              "ofType": null
8663            },
8664            "isDeprecated": false,
8665            "deprecationReason": null
8666          },
8667          {
8668            "name": "id",
8669            "description": null,
8670            "args": [],
8671            "type": {
8672              "kind": "NON_NULL",
8673              "name": null,
8674              "ofType": {
8675                "kind": "SCALAR",
8676                "name": "ID",
8677                "ofType": null
8678              }
8679            },
8680            "isDeprecated": false,
8681            "deprecationReason": null
8682          },
8683          {
8684            "name": "iosAppBuildCredentialsList",
8685            "description": null,
8686            "args": [],
8687            "type": {
8688              "kind": "NON_NULL",
8689              "name": null,
8690              "ofType": {
8691                "kind": "LIST",
8692                "name": null,
8693                "ofType": {
8694                  "kind": "NON_NULL",
8695                  "name": null,
8696                  "ofType": {
8697                    "kind": "OBJECT",
8698                    "name": "IosAppBuildCredentials",
8699                    "ofType": null
8700                  }
8701                }
8702              }
8703            },
8704            "isDeprecated": false,
8705            "deprecationReason": null
8706          },
8707          {
8708            "name": "serialNumber",
8709            "description": null,
8710            "args": [],
8711            "type": {
8712              "kind": "NON_NULL",
8713              "name": null,
8714              "ofType": {
8715                "kind": "SCALAR",
8716                "name": "String",
8717                "ofType": null
8718              }
8719            },
8720            "isDeprecated": false,
8721            "deprecationReason": null
8722          },
8723          {
8724            "name": "updatedAt",
8725            "description": null,
8726            "args": [],
8727            "type": {
8728              "kind": "NON_NULL",
8729              "name": null,
8730              "ofType": {
8731                "kind": "SCALAR",
8732                "name": "DateTime",
8733                "ofType": null
8734              }
8735            },
8736            "isDeprecated": false,
8737            "deprecationReason": null
8738          },
8739          {
8740            "name": "validityNotAfter",
8741            "description": null,
8742            "args": [],
8743            "type": {
8744              "kind": "NON_NULL",
8745              "name": null,
8746              "ofType": {
8747                "kind": "SCALAR",
8748                "name": "DateTime",
8749                "ofType": null
8750              }
8751            },
8752            "isDeprecated": false,
8753            "deprecationReason": null
8754          },
8755          {
8756            "name": "validityNotBefore",
8757            "description": null,
8758            "args": [],
8759            "type": {
8760              "kind": "NON_NULL",
8761              "name": null,
8762              "ofType": {
8763                "kind": "SCALAR",
8764                "name": "DateTime",
8765                "ofType": null
8766              }
8767            },
8768            "isDeprecated": false,
8769            "deprecationReason": null
8770          }
8771        ],
8772        "inputFields": null,
8773        "interfaces": [],
8774        "enumValues": null,
8775        "possibleTypes": null
8776      },
8777      {
8778        "kind": "INPUT_OBJECT",
8779        "name": "AppleDistributionCertificateInput",
8780        "description": null,
8781        "fields": null,
8782        "inputFields": [
8783          {
8784            "name": "appleTeamId",
8785            "description": null,
8786            "type": {
8787              "kind": "SCALAR",
8788              "name": "ID",
8789              "ofType": null
8790            },
8791            "defaultValue": null,
8792            "isDeprecated": false,
8793            "deprecationReason": null
8794          },
8795          {
8796            "name": "certP12",
8797            "description": null,
8798            "type": {
8799              "kind": "NON_NULL",
8800              "name": null,
8801              "ofType": {
8802                "kind": "SCALAR",
8803                "name": "String",
8804                "ofType": null
8805              }
8806            },
8807            "defaultValue": null,
8808            "isDeprecated": false,
8809            "deprecationReason": null
8810          },
8811          {
8812            "name": "certPassword",
8813            "description": null,
8814            "type": {
8815              "kind": "NON_NULL",
8816              "name": null,
8817              "ofType": {
8818                "kind": "SCALAR",
8819                "name": "String",
8820                "ofType": null
8821              }
8822            },
8823            "defaultValue": null,
8824            "isDeprecated": false,
8825            "deprecationReason": null
8826          },
8827          {
8828            "name": "certPrivateSigningKey",
8829            "description": null,
8830            "type": {
8831              "kind": "SCALAR",
8832              "name": "String",
8833              "ofType": null
8834            },
8835            "defaultValue": null,
8836            "isDeprecated": false,
8837            "deprecationReason": null
8838          },
8839          {
8840            "name": "developerPortalIdentifier",
8841            "description": null,
8842            "type": {
8843              "kind": "SCALAR",
8844              "name": "String",
8845              "ofType": null
8846            },
8847            "defaultValue": null,
8848            "isDeprecated": false,
8849            "deprecationReason": null
8850          }
8851        ],
8852        "interfaces": null,
8853        "enumValues": null,
8854        "possibleTypes": null
8855      },
8856      {
8857        "kind": "OBJECT",
8858        "name": "AppleDistributionCertificateMutation",
8859        "description": null,
8860        "fields": [
8861          {
8862            "name": "createAppleDistributionCertificate",
8863            "description": "Create a Distribution Certificate",
8864            "args": [
8865              {
8866                "name": "accountId",
8867                "description": null,
8868                "type": {
8869                  "kind": "NON_NULL",
8870                  "name": null,
8871                  "ofType": {
8872                    "kind": "SCALAR",
8873                    "name": "ID",
8874                    "ofType": null
8875                  }
8876                },
8877                "defaultValue": null,
8878                "isDeprecated": false,
8879                "deprecationReason": null
8880              },
8881              {
8882                "name": "appleDistributionCertificateInput",
8883                "description": null,
8884                "type": {
8885                  "kind": "NON_NULL",
8886                  "name": null,
8887                  "ofType": {
8888                    "kind": "INPUT_OBJECT",
8889                    "name": "AppleDistributionCertificateInput",
8890                    "ofType": null
8891                  }
8892                },
8893                "defaultValue": null,
8894                "isDeprecated": false,
8895                "deprecationReason": null
8896              }
8897            ],
8898            "type": {
8899              "kind": "OBJECT",
8900              "name": "AppleDistributionCertificate",
8901              "ofType": null
8902            },
8903            "isDeprecated": false,
8904            "deprecationReason": null
8905          },
8906          {
8907            "name": "deleteAppleDistributionCertificate",
8908            "description": "Delete a Distribution Certificate",
8909            "args": [
8910              {
8911                "name": "id",
8912                "description": null,
8913                "type": {
8914                  "kind": "NON_NULL",
8915                  "name": null,
8916                  "ofType": {
8917                    "kind": "SCALAR",
8918                    "name": "ID",
8919                    "ofType": null
8920                  }
8921                },
8922                "defaultValue": null,
8923                "isDeprecated": false,
8924                "deprecationReason": null
8925              }
8926            ],
8927            "type": {
8928              "kind": "NON_NULL",
8929              "name": null,
8930              "ofType": {
8931                "kind": "OBJECT",
8932                "name": "DeleteAppleDistributionCertificateResult",
8933                "ofType": null
8934              }
8935            },
8936            "isDeprecated": false,
8937            "deprecationReason": null
8938          }
8939        ],
8940        "inputFields": null,
8941        "interfaces": [],
8942        "enumValues": null,
8943        "possibleTypes": null
8944      },
8945      {
8946        "kind": "OBJECT",
8947        "name": "AppleProvisioningProfile",
8948        "description": null,
8949        "fields": [
8950          {
8951            "name": "account",
8952            "description": null,
8953            "args": [],
8954            "type": {
8955              "kind": "NON_NULL",
8956              "name": null,
8957              "ofType": {
8958                "kind": "OBJECT",
8959                "name": "Account",
8960                "ofType": null
8961              }
8962            },
8963            "isDeprecated": false,
8964            "deprecationReason": null
8965          },
8966          {
8967            "name": "appleAppIdentifier",
8968            "description": null,
8969            "args": [],
8970            "type": {
8971              "kind": "NON_NULL",
8972              "name": null,
8973              "ofType": {
8974                "kind": "OBJECT",
8975                "name": "AppleAppIdentifier",
8976                "ofType": null
8977              }
8978            },
8979            "isDeprecated": false,
8980            "deprecationReason": null
8981          },
8982          {
8983            "name": "appleDevices",
8984            "description": null,
8985            "args": [],
8986            "type": {
8987              "kind": "NON_NULL",
8988              "name": null,
8989              "ofType": {
8990                "kind": "LIST",
8991                "name": null,
8992                "ofType": {
8993                  "kind": "NON_NULL",
8994                  "name": null,
8995                  "ofType": {
8996                    "kind": "OBJECT",
8997                    "name": "AppleDevice",
8998                    "ofType": null
8999                  }
9000                }
9001              }
9002            },
9003            "isDeprecated": false,
9004            "deprecationReason": null
9005          },
9006          {
9007            "name": "appleTeam",
9008            "description": null,
9009            "args": [],
9010            "type": {
9011              "kind": "OBJECT",
9012              "name": "AppleTeam",
9013              "ofType": null
9014            },
9015            "isDeprecated": false,
9016            "deprecationReason": null
9017          },
9018          {
9019            "name": "appleUUID",
9020            "description": null,
9021            "args": [],
9022            "type": {
9023              "kind": "NON_NULL",
9024              "name": null,
9025              "ofType": {
9026                "kind": "SCALAR",
9027                "name": "String",
9028                "ofType": null
9029              }
9030            },
9031            "isDeprecated": false,
9032            "deprecationReason": null
9033          },
9034          {
9035            "name": "createdAt",
9036            "description": null,
9037            "args": [],
9038            "type": {
9039              "kind": "NON_NULL",
9040              "name": null,
9041              "ofType": {
9042                "kind": "SCALAR",
9043                "name": "DateTime",
9044                "ofType": null
9045              }
9046            },
9047            "isDeprecated": false,
9048            "deprecationReason": null
9049          },
9050          {
9051            "name": "developerPortalIdentifier",
9052            "description": null,
9053            "args": [],
9054            "type": {
9055              "kind": "SCALAR",
9056              "name": "String",
9057              "ofType": null
9058            },
9059            "isDeprecated": false,
9060            "deprecationReason": null
9061          },
9062          {
9063            "name": "expiration",
9064            "description": null,
9065            "args": [],
9066            "type": {
9067              "kind": "NON_NULL",
9068              "name": null,
9069              "ofType": {
9070                "kind": "SCALAR",
9071                "name": "DateTime",
9072                "ofType": null
9073              }
9074            },
9075            "isDeprecated": false,
9076            "deprecationReason": null
9077          },
9078          {
9079            "name": "id",
9080            "description": null,
9081            "args": [],
9082            "type": {
9083              "kind": "NON_NULL",
9084              "name": null,
9085              "ofType": {
9086                "kind": "SCALAR",
9087                "name": "ID",
9088                "ofType": null
9089              }
9090            },
9091            "isDeprecated": false,
9092            "deprecationReason": null
9093          },
9094          {
9095            "name": "provisioningProfile",
9096            "description": null,
9097            "args": [],
9098            "type": {
9099              "kind": "SCALAR",
9100              "name": "String",
9101              "ofType": null
9102            },
9103            "isDeprecated": false,
9104            "deprecationReason": null
9105          },
9106          {
9107            "name": "status",
9108            "description": null,
9109            "args": [],
9110            "type": {
9111              "kind": "NON_NULL",
9112              "name": null,
9113              "ofType": {
9114                "kind": "SCALAR",
9115                "name": "String",
9116                "ofType": null
9117              }
9118            },
9119            "isDeprecated": false,
9120            "deprecationReason": null
9121          },
9122          {
9123            "name": "updatedAt",
9124            "description": null,
9125            "args": [],
9126            "type": {
9127              "kind": "NON_NULL",
9128              "name": null,
9129              "ofType": {
9130                "kind": "SCALAR",
9131                "name": "DateTime",
9132                "ofType": null
9133              }
9134            },
9135            "isDeprecated": false,
9136            "deprecationReason": null
9137          }
9138        ],
9139        "inputFields": null,
9140        "interfaces": [],
9141        "enumValues": null,
9142        "possibleTypes": null
9143      },
9144      {
9145        "kind": "INPUT_OBJECT",
9146        "name": "AppleProvisioningProfileInput",
9147        "description": null,
9148        "fields": null,
9149        "inputFields": [
9150          {
9151            "name": "appleProvisioningProfile",
9152            "description": null,
9153            "type": {
9154              "kind": "NON_NULL",
9155              "name": null,
9156              "ofType": {
9157                "kind": "SCALAR",
9158                "name": "String",
9159                "ofType": null
9160              }
9161            },
9162            "defaultValue": null,
9163            "isDeprecated": false,
9164            "deprecationReason": null
9165          },
9166          {
9167            "name": "developerPortalIdentifier",
9168            "description": null,
9169            "type": {
9170              "kind": "SCALAR",
9171              "name": "String",
9172              "ofType": null
9173            },
9174            "defaultValue": null,
9175            "isDeprecated": false,
9176            "deprecationReason": null
9177          }
9178        ],
9179        "interfaces": null,
9180        "enumValues": null,
9181        "possibleTypes": null
9182      },
9183      {
9184        "kind": "OBJECT",
9185        "name": "AppleProvisioningProfileMutation",
9186        "description": null,
9187        "fields": [
9188          {
9189            "name": "createAppleProvisioningProfile",
9190            "description": "Create a Provisioning Profile",
9191            "args": [
9192              {
9193                "name": "accountId",
9194                "description": null,
9195                "type": {
9196                  "kind": "NON_NULL",
9197                  "name": null,
9198                  "ofType": {
9199                    "kind": "SCALAR",
9200                    "name": "ID",
9201                    "ofType": null
9202                  }
9203                },
9204                "defaultValue": null,
9205                "isDeprecated": false,
9206                "deprecationReason": null
9207              },
9208              {
9209                "name": "appleAppIdentifierId",
9210                "description": null,
9211                "type": {
9212                  "kind": "NON_NULL",
9213                  "name": null,
9214                  "ofType": {
9215                    "kind": "SCALAR",
9216                    "name": "ID",
9217                    "ofType": null
9218                  }
9219                },
9220                "defaultValue": null,
9221                "isDeprecated": false,
9222                "deprecationReason": null
9223              },
9224              {
9225                "name": "appleProvisioningProfileInput",
9226                "description": null,
9227                "type": {
9228                  "kind": "NON_NULL",
9229                  "name": null,
9230                  "ofType": {
9231                    "kind": "INPUT_OBJECT",
9232                    "name": "AppleProvisioningProfileInput",
9233                    "ofType": null
9234                  }
9235                },
9236                "defaultValue": null,
9237                "isDeprecated": false,
9238                "deprecationReason": null
9239              }
9240            ],
9241            "type": {
9242              "kind": "NON_NULL",
9243              "name": null,
9244              "ofType": {
9245                "kind": "OBJECT",
9246                "name": "AppleProvisioningProfile",
9247                "ofType": null
9248              }
9249            },
9250            "isDeprecated": false,
9251            "deprecationReason": null
9252          },
9253          {
9254            "name": "deleteAppleProvisioningProfile",
9255            "description": "Delete a Provisioning Profile",
9256            "args": [
9257              {
9258                "name": "id",
9259                "description": null,
9260                "type": {
9261                  "kind": "NON_NULL",
9262                  "name": null,
9263                  "ofType": {
9264                    "kind": "SCALAR",
9265                    "name": "ID",
9266                    "ofType": null
9267                  }
9268                },
9269                "defaultValue": null,
9270                "isDeprecated": false,
9271                "deprecationReason": null
9272              }
9273            ],
9274            "type": {
9275              "kind": "NON_NULL",
9276              "name": null,
9277              "ofType": {
9278                "kind": "OBJECT",
9279                "name": "DeleteAppleProvisioningProfileResult",
9280                "ofType": null
9281              }
9282            },
9283            "isDeprecated": false,
9284            "deprecationReason": null
9285          },
9286          {
9287            "name": "deleteAppleProvisioningProfiles",
9288            "description": "Delete Provisioning Profiles",
9289            "args": [
9290              {
9291                "name": "ids",
9292                "description": null,
9293                "type": {
9294                  "kind": "NON_NULL",
9295                  "name": null,
9296                  "ofType": {
9297                    "kind": "LIST",
9298                    "name": null,
9299                    "ofType": {
9300                      "kind": "NON_NULL",
9301                      "name": null,
9302                      "ofType": {
9303                        "kind": "SCALAR",
9304                        "name": "ID",
9305                        "ofType": null
9306                      }
9307                    }
9308                  }
9309                },
9310                "defaultValue": null,
9311                "isDeprecated": false,
9312                "deprecationReason": null
9313              }
9314            ],
9315            "type": {
9316              "kind": "NON_NULL",
9317              "name": null,
9318              "ofType": {
9319                "kind": "LIST",
9320                "name": null,
9321                "ofType": {
9322                  "kind": "NON_NULL",
9323                  "name": null,
9324                  "ofType": {
9325                    "kind": "OBJECT",
9326                    "name": "DeleteAppleProvisioningProfileResult",
9327                    "ofType": null
9328                  }
9329                }
9330              }
9331            },
9332            "isDeprecated": false,
9333            "deprecationReason": null
9334          },
9335          {
9336            "name": "updateAppleProvisioningProfile",
9337            "description": "Update a Provisioning Profile",
9338            "args": [
9339              {
9340                "name": "appleProvisioningProfileInput",
9341                "description": null,
9342                "type": {
9343                  "kind": "NON_NULL",
9344                  "name": null,
9345                  "ofType": {
9346                    "kind": "INPUT_OBJECT",
9347                    "name": "AppleProvisioningProfileInput",
9348                    "ofType": null
9349                  }
9350                },
9351                "defaultValue": null,
9352                "isDeprecated": false,
9353                "deprecationReason": null
9354              },
9355              {
9356                "name": "id",
9357                "description": null,
9358                "type": {
9359                  "kind": "NON_NULL",
9360                  "name": null,
9361                  "ofType": {
9362                    "kind": "SCALAR",
9363                    "name": "ID",
9364                    "ofType": null
9365                  }
9366                },
9367                "defaultValue": null,
9368                "isDeprecated": false,
9369                "deprecationReason": null
9370              }
9371            ],
9372            "type": {
9373              "kind": "NON_NULL",
9374              "name": null,
9375              "ofType": {
9376                "kind": "OBJECT",
9377                "name": "AppleProvisioningProfile",
9378                "ofType": null
9379              }
9380            },
9381            "isDeprecated": false,
9382            "deprecationReason": null
9383          }
9384        ],
9385        "inputFields": null,
9386        "interfaces": [],
9387        "enumValues": null,
9388        "possibleTypes": null
9389      },
9390      {
9391        "kind": "OBJECT",
9392        "name": "ApplePushKey",
9393        "description": null,
9394        "fields": [
9395          {
9396            "name": "account",
9397            "description": null,
9398            "args": [],
9399            "type": {
9400              "kind": "NON_NULL",
9401              "name": null,
9402              "ofType": {
9403                "kind": "OBJECT",
9404                "name": "Account",
9405                "ofType": null
9406              }
9407            },
9408            "isDeprecated": false,
9409            "deprecationReason": null
9410          },
9411          {
9412            "name": "appleTeam",
9413            "description": null,
9414            "args": [],
9415            "type": {
9416              "kind": "OBJECT",
9417              "name": "AppleTeam",
9418              "ofType": null
9419            },
9420            "isDeprecated": false,
9421            "deprecationReason": null
9422          },
9423          {
9424            "name": "createdAt",
9425            "description": null,
9426            "args": [],
9427            "type": {
9428              "kind": "NON_NULL",
9429              "name": null,
9430              "ofType": {
9431                "kind": "SCALAR",
9432                "name": "DateTime",
9433                "ofType": null
9434              }
9435            },
9436            "isDeprecated": false,
9437            "deprecationReason": null
9438          },
9439          {
9440            "name": "id",
9441            "description": null,
9442            "args": [],
9443            "type": {
9444              "kind": "NON_NULL",
9445              "name": null,
9446              "ofType": {
9447                "kind": "SCALAR",
9448                "name": "ID",
9449                "ofType": null
9450              }
9451            },
9452            "isDeprecated": false,
9453            "deprecationReason": null
9454          },
9455          {
9456            "name": "iosAppCredentialsList",
9457            "description": null,
9458            "args": [],
9459            "type": {
9460              "kind": "NON_NULL",
9461              "name": null,
9462              "ofType": {
9463                "kind": "LIST",
9464                "name": null,
9465                "ofType": {
9466                  "kind": "NON_NULL",
9467                  "name": null,
9468                  "ofType": {
9469                    "kind": "OBJECT",
9470                    "name": "IosAppCredentials",
9471                    "ofType": null
9472                  }
9473                }
9474              }
9475            },
9476            "isDeprecated": false,
9477            "deprecationReason": null
9478          },
9479          {
9480            "name": "keyIdentifier",
9481            "description": null,
9482            "args": [],
9483            "type": {
9484              "kind": "NON_NULL",
9485              "name": null,
9486              "ofType": {
9487                "kind": "SCALAR",
9488                "name": "String",
9489                "ofType": null
9490              }
9491            },
9492            "isDeprecated": false,
9493            "deprecationReason": null
9494          },
9495          {
9496            "name": "keyP8",
9497            "description": null,
9498            "args": [],
9499            "type": {
9500              "kind": "NON_NULL",
9501              "name": null,
9502              "ofType": {
9503                "kind": "SCALAR",
9504                "name": "String",
9505                "ofType": null
9506              }
9507            },
9508            "isDeprecated": false,
9509            "deprecationReason": null
9510          },
9511          {
9512            "name": "updatedAt",
9513            "description": null,
9514            "args": [],
9515            "type": {
9516              "kind": "NON_NULL",
9517              "name": null,
9518              "ofType": {
9519                "kind": "SCALAR",
9520                "name": "DateTime",
9521                "ofType": null
9522              }
9523            },
9524            "isDeprecated": false,
9525            "deprecationReason": null
9526          }
9527        ],
9528        "inputFields": null,
9529        "interfaces": [],
9530        "enumValues": null,
9531        "possibleTypes": null
9532      },
9533      {
9534        "kind": "INPUT_OBJECT",
9535        "name": "ApplePushKeyInput",
9536        "description": null,
9537        "fields": null,
9538        "inputFields": [
9539          {
9540            "name": "appleTeamId",
9541            "description": null,
9542            "type": {
9543              "kind": "SCALAR",
9544              "name": "ID",
9545              "ofType": null
9546            },
9547            "defaultValue": null,
9548            "isDeprecated": false,
9549            "deprecationReason": null
9550          },
9551          {
9552            "name": "keyIdentifier",
9553            "description": null,
9554            "type": {
9555              "kind": "NON_NULL",
9556              "name": null,
9557              "ofType": {
9558                "kind": "SCALAR",
9559                "name": "String",
9560                "ofType": null
9561              }
9562            },
9563            "defaultValue": null,
9564            "isDeprecated": false,
9565            "deprecationReason": null
9566          },
9567          {
9568            "name": "keyP8",
9569            "description": null,
9570            "type": {
9571              "kind": "NON_NULL",
9572              "name": null,
9573              "ofType": {
9574                "kind": "SCALAR",
9575                "name": "String",
9576                "ofType": null
9577              }
9578            },
9579            "defaultValue": null,
9580            "isDeprecated": false,
9581            "deprecationReason": null
9582          }
9583        ],
9584        "interfaces": null,
9585        "enumValues": null,
9586        "possibleTypes": null
9587      },
9588      {
9589        "kind": "OBJECT",
9590        "name": "ApplePushKeyMutation",
9591        "description": null,
9592        "fields": [
9593          {
9594            "name": "createApplePushKey",
9595            "description": "Create an Apple Push Notification key",
9596            "args": [
9597              {
9598                "name": "accountId",
9599                "description": null,
9600                "type": {
9601                  "kind": "NON_NULL",
9602                  "name": null,
9603                  "ofType": {
9604                    "kind": "SCALAR",
9605                    "name": "ID",
9606                    "ofType": null
9607                  }
9608                },
9609                "defaultValue": null,
9610                "isDeprecated": false,
9611                "deprecationReason": null
9612              },
9613              {
9614                "name": "applePushKeyInput",
9615                "description": null,
9616                "type": {
9617                  "kind": "NON_NULL",
9618                  "name": null,
9619                  "ofType": {
9620                    "kind": "INPUT_OBJECT",
9621                    "name": "ApplePushKeyInput",
9622                    "ofType": null
9623                  }
9624                },
9625                "defaultValue": null,
9626                "isDeprecated": false,
9627                "deprecationReason": null
9628              }
9629            ],
9630            "type": {
9631              "kind": "NON_NULL",
9632              "name": null,
9633              "ofType": {
9634                "kind": "OBJECT",
9635                "name": "ApplePushKey",
9636                "ofType": null
9637              }
9638            },
9639            "isDeprecated": false,
9640            "deprecationReason": null
9641          },
9642          {
9643            "name": "deleteApplePushKey",
9644            "description": "Delete an Apple Push Notification key",
9645            "args": [
9646              {
9647                "name": "id",
9648                "description": null,
9649                "type": {
9650                  "kind": "NON_NULL",
9651                  "name": null,
9652                  "ofType": {
9653                    "kind": "SCALAR",
9654                    "name": "ID",
9655                    "ofType": null
9656                  }
9657                },
9658                "defaultValue": null,
9659                "isDeprecated": false,
9660                "deprecationReason": null
9661              }
9662            ],
9663            "type": {
9664              "kind": "NON_NULL",
9665              "name": null,
9666              "ofType": {
9667                "kind": "OBJECT",
9668                "name": "deleteApplePushKeyResult",
9669                "ofType": null
9670              }
9671            },
9672            "isDeprecated": false,
9673            "deprecationReason": null
9674          }
9675        ],
9676        "inputFields": null,
9677        "interfaces": [],
9678        "enumValues": null,
9679        "possibleTypes": null
9680      },
9681      {
9682        "kind": "OBJECT",
9683        "name": "AppleTeam",
9684        "description": null,
9685        "fields": [
9686          {
9687            "name": "account",
9688            "description": null,
9689            "args": [],
9690            "type": {
9691              "kind": "NON_NULL",
9692              "name": null,
9693              "ofType": {
9694                "kind": "OBJECT",
9695                "name": "Account",
9696                "ofType": null
9697              }
9698            },
9699            "isDeprecated": false,
9700            "deprecationReason": null
9701          },
9702          {
9703            "name": "appleAppIdentifiers",
9704            "description": null,
9705            "args": [
9706              {
9707                "name": "bundleIdentifier",
9708                "description": null,
9709                "type": {
9710                  "kind": "SCALAR",
9711                  "name": "String",
9712                  "ofType": null
9713                },
9714                "defaultValue": null,
9715                "isDeprecated": false,
9716                "deprecationReason": null
9717              }
9718            ],
9719            "type": {
9720              "kind": "NON_NULL",
9721              "name": null,
9722              "ofType": {
9723                "kind": "LIST",
9724                "name": null,
9725                "ofType": {
9726                  "kind": "NON_NULL",
9727                  "name": null,
9728                  "ofType": {
9729                    "kind": "OBJECT",
9730                    "name": "AppleAppIdentifier",
9731                    "ofType": null
9732                  }
9733                }
9734              }
9735            },
9736            "isDeprecated": false,
9737            "deprecationReason": null
9738          },
9739          {
9740            "name": "appleDevices",
9741            "description": null,
9742            "args": [],
9743            "type": {
9744              "kind": "NON_NULL",
9745              "name": null,
9746              "ofType": {
9747                "kind": "LIST",
9748                "name": null,
9749                "ofType": {
9750                  "kind": "NON_NULL",
9751                  "name": null,
9752                  "ofType": {
9753                    "kind": "OBJECT",
9754                    "name": "AppleDevice",
9755                    "ofType": null
9756                  }
9757                }
9758              }
9759            },
9760            "isDeprecated": false,
9761            "deprecationReason": null
9762          },
9763          {
9764            "name": "appleDistributionCertificates",
9765            "description": null,
9766            "args": [],
9767            "type": {
9768              "kind": "NON_NULL",
9769              "name": null,
9770              "ofType": {
9771                "kind": "LIST",
9772                "name": null,
9773                "ofType": {
9774                  "kind": "NON_NULL",
9775                  "name": null,
9776                  "ofType": {
9777                    "kind": "OBJECT",
9778                    "name": "AppleDistributionCertificate",
9779                    "ofType": null
9780                  }
9781                }
9782              }
9783            },
9784            "isDeprecated": false,
9785            "deprecationReason": null
9786          },
9787          {
9788            "name": "appleProvisioningProfiles",
9789            "description": null,
9790            "args": [
9791              {
9792                "name": "appleAppIdentifierId",
9793                "description": null,
9794                "type": {
9795                  "kind": "SCALAR",
9796                  "name": "ID",
9797                  "ofType": null
9798                },
9799                "defaultValue": null,
9800                "isDeprecated": false,
9801                "deprecationReason": null
9802              }
9803            ],
9804            "type": {
9805              "kind": "NON_NULL",
9806              "name": null,
9807              "ofType": {
9808                "kind": "LIST",
9809                "name": null,
9810                "ofType": {
9811                  "kind": "NON_NULL",
9812                  "name": null,
9813                  "ofType": {
9814                    "kind": "OBJECT",
9815                    "name": "AppleProvisioningProfile",
9816                    "ofType": null
9817                  }
9818                }
9819              }
9820            },
9821            "isDeprecated": false,
9822            "deprecationReason": null
9823          },
9824          {
9825            "name": "applePushKeys",
9826            "description": null,
9827            "args": [],
9828            "type": {
9829              "kind": "NON_NULL",
9830              "name": null,
9831              "ofType": {
9832                "kind": "LIST",
9833                "name": null,
9834                "ofType": {
9835                  "kind": "NON_NULL",
9836                  "name": null,
9837                  "ofType": {
9838                    "kind": "OBJECT",
9839                    "name": "ApplePushKey",
9840                    "ofType": null
9841                  }
9842                }
9843              }
9844            },
9845            "isDeprecated": false,
9846            "deprecationReason": null
9847          },
9848          {
9849            "name": "appleTeamIdentifier",
9850            "description": null,
9851            "args": [],
9852            "type": {
9853              "kind": "NON_NULL",
9854              "name": null,
9855              "ofType": {
9856                "kind": "SCALAR",
9857                "name": "String",
9858                "ofType": null
9859              }
9860            },
9861            "isDeprecated": false,
9862            "deprecationReason": null
9863          },
9864          {
9865            "name": "appleTeamName",
9866            "description": null,
9867            "args": [],
9868            "type": {
9869              "kind": "SCALAR",
9870              "name": "String",
9871              "ofType": null
9872            },
9873            "isDeprecated": false,
9874            "deprecationReason": null
9875          },
9876          {
9877            "name": "id",
9878            "description": null,
9879            "args": [],
9880            "type": {
9881              "kind": "NON_NULL",
9882              "name": null,
9883              "ofType": {
9884                "kind": "SCALAR",
9885                "name": "ID",
9886                "ofType": null
9887              }
9888            },
9889            "isDeprecated": false,
9890            "deprecationReason": null
9891          }
9892        ],
9893        "inputFields": null,
9894        "interfaces": [],
9895        "enumValues": null,
9896        "possibleTypes": null
9897      },
9898      {
9899        "kind": "INPUT_OBJECT",
9900        "name": "AppleTeamInput",
9901        "description": null,
9902        "fields": null,
9903        "inputFields": [
9904          {
9905            "name": "appleTeamIdentifier",
9906            "description": null,
9907            "type": {
9908              "kind": "NON_NULL",
9909              "name": null,
9910              "ofType": {
9911                "kind": "SCALAR",
9912                "name": "String",
9913                "ofType": null
9914              }
9915            },
9916            "defaultValue": null,
9917            "isDeprecated": false,
9918            "deprecationReason": null
9919          },
9920          {
9921            "name": "appleTeamName",
9922            "description": null,
9923            "type": {
9924              "kind": "SCALAR",
9925              "name": "String",
9926              "ofType": null
9927            },
9928            "defaultValue": null,
9929            "isDeprecated": false,
9930            "deprecationReason": null
9931          }
9932        ],
9933        "interfaces": null,
9934        "enumValues": null,
9935        "possibleTypes": null
9936      },
9937      {
9938        "kind": "OBJECT",
9939        "name": "AppleTeamMutation",
9940        "description": null,
9941        "fields": [
9942          {
9943            "name": "createAppleTeam",
9944            "description": "Create an Apple Team",
9945            "args": [
9946              {
9947                "name": "accountId",
9948                "description": null,
9949                "type": {
9950                  "kind": "NON_NULL",
9951                  "name": null,
9952                  "ofType": {
9953                    "kind": "SCALAR",
9954                    "name": "ID",
9955                    "ofType": null
9956                  }
9957                },
9958                "defaultValue": null,
9959                "isDeprecated": false,
9960                "deprecationReason": null
9961              },
9962              {
9963                "name": "appleTeamInput",
9964                "description": null,
9965                "type": {
9966                  "kind": "NON_NULL",
9967                  "name": null,
9968                  "ofType": {
9969                    "kind": "INPUT_OBJECT",
9970                    "name": "AppleTeamInput",
9971                    "ofType": null
9972                  }
9973                },
9974                "defaultValue": null,
9975                "isDeprecated": false,
9976                "deprecationReason": null
9977              }
9978            ],
9979            "type": {
9980              "kind": "NON_NULL",
9981              "name": null,
9982              "ofType": {
9983                "kind": "OBJECT",
9984                "name": "AppleTeam",
9985                "ofType": null
9986              }
9987            },
9988            "isDeprecated": false,
9989            "deprecationReason": null
9990          }
9991        ],
9992        "inputFields": null,
9993        "interfaces": [],
9994        "enumValues": null,
9995        "possibleTypes": null
9996      },
9997      {
9998        "kind": "OBJECT",
9999        "name": "AppleTeamQuery",
10000        "description": null,
10001        "fields": [
10002          {
10003            "name": "byAppleTeamIdentifier",
10004            "description": null,
10005            "args": [
10006              {
10007                "name": "accountId",
10008                "description": null,
10009                "type": {
10010                  "kind": "NON_NULL",
10011                  "name": null,
10012                  "ofType": {
10013                    "kind": "SCALAR",
10014                    "name": "ID",
10015                    "ofType": null
10016                  }
10017                },
10018                "defaultValue": null,
10019                "isDeprecated": false,
10020                "deprecationReason": null
10021              },
10022              {
10023                "name": "identifier",
10024                "description": null,
10025                "type": {
10026                  "kind": "NON_NULL",
10027                  "name": null,
10028                  "ofType": {
10029                    "kind": "SCALAR",
10030                    "name": "String",
10031                    "ofType": null
10032                  }
10033                },
10034                "defaultValue": null,
10035                "isDeprecated": false,
10036                "deprecationReason": null
10037              }
10038            ],
10039            "type": {
10040              "kind": "OBJECT",
10041              "name": "AppleTeam",
10042              "ofType": null
10043            },
10044            "isDeprecated": false,
10045            "deprecationReason": null
10046          }
10047        ],
10048        "inputFields": null,
10049        "interfaces": [],
10050        "enumValues": null,
10051        "possibleTypes": null
10052      },
10053      {
10054        "kind": "ENUM",
10055        "name": "AppsFilter",
10056        "description": null,
10057        "fields": null,
10058        "inputFields": null,
10059        "interfaces": null,
10060        "enumValues": [
10061          {
10062            "name": "FEATURED",
10063            "description": "Featured Projects",
10064            "isDeprecated": false,
10065            "deprecationReason": null
10066          },
10067          {
10068            "name": "NEW",
10069            "description": "New Projects",
10070            "isDeprecated": false,
10071            "deprecationReason": null
10072          }
10073        ],
10074        "possibleTypes": null
10075      },
10076      {
10077        "kind": "INPUT_OBJECT",
10078        "name": "AscApiKeyInput",
10079        "description": null,
10080        "fields": null,
10081        "inputFields": [
10082          {
10083            "name": "issuerIdentifier",
10084            "description": null,
10085            "type": {
10086              "kind": "NON_NULL",
10087              "name": null,
10088              "ofType": {
10089                "kind": "SCALAR",
10090                "name": "String",
10091                "ofType": null
10092              }
10093            },
10094            "defaultValue": null,
10095            "isDeprecated": false,
10096            "deprecationReason": null
10097          },
10098          {
10099            "name": "keyIdentifier",
10100            "description": null,
10101            "type": {
10102              "kind": "NON_NULL",
10103              "name": null,
10104              "ofType": {
10105                "kind": "SCALAR",
10106                "name": "String",
10107                "ofType": null
10108              }
10109            },
10110            "defaultValue": null,
10111            "isDeprecated": false,
10112            "deprecationReason": null
10113          },
10114          {
10115            "name": "keyP8",
10116            "description": null,
10117            "type": {
10118              "kind": "NON_NULL",
10119              "name": null,
10120              "ofType": {
10121                "kind": "SCALAR",
10122                "name": "String",
10123                "ofType": null
10124              }
10125            },
10126            "defaultValue": null,
10127            "isDeprecated": false,
10128            "deprecationReason": null
10129          }
10130        ],
10131        "interfaces": null,
10132        "enumValues": null,
10133        "possibleTypes": null
10134      },
10135      {
10136        "kind": "OBJECT",
10137        "name": "AssetMetadataResult",
10138        "description": null,
10139        "fields": [
10140          {
10141            "name": "status",
10142            "description": null,
10143            "args": [],
10144            "type": {
10145              "kind": "NON_NULL",
10146              "name": null,
10147              "ofType": {
10148                "kind": "ENUM",
10149                "name": "AssetMetadataStatus",
10150                "ofType": null
10151              }
10152            },
10153            "isDeprecated": false,
10154            "deprecationReason": null
10155          },
10156          {
10157            "name": "storageKey",
10158            "description": null,
10159            "args": [],
10160            "type": {
10161              "kind": "NON_NULL",
10162              "name": null,
10163              "ofType": {
10164                "kind": "SCALAR",
10165                "name": "String",
10166                "ofType": null
10167              }
10168            },
10169            "isDeprecated": false,
10170            "deprecationReason": null
10171          }
10172        ],
10173        "inputFields": null,
10174        "interfaces": [],
10175        "enumValues": null,
10176        "possibleTypes": null
10177      },
10178      {
10179        "kind": "ENUM",
10180        "name": "AssetMetadataStatus",
10181        "description": null,
10182        "fields": null,
10183        "inputFields": null,
10184        "interfaces": null,
10185        "enumValues": [
10186          {
10187            "name": "DOES_NOT_EXIST",
10188            "description": null,
10189            "isDeprecated": false,
10190            "deprecationReason": null
10191          },
10192          {
10193            "name": "EXISTS",
10194            "description": null,
10195            "isDeprecated": false,
10196            "deprecationReason": null
10197          }
10198        ],
10199        "possibleTypes": null
10200      },
10201      {
10202        "kind": "OBJECT",
10203        "name": "AssetMutation",
10204        "description": null,
10205        "fields": [
10206          {
10207            "name": "getSignedAssetUploadSpecifications",
10208            "description": "Returns an array of specifications for upload. Each URL is valid for an hour.\nThe content type of the asset you wish to upload must be specified.",
10209            "args": [
10210              {
10211                "name": "assetContentTypes",
10212                "description": "max 600",
10213                "type": {
10214                  "kind": "NON_NULL",
10215                  "name": null,
10216                  "ofType": {
10217                    "kind": "LIST",
10218                    "name": null,
10219                    "ofType": {
10220                      "kind": "SCALAR",
10221                      "name": "String",
10222                      "ofType": null
10223                    }
10224                  }
10225                },
10226                "defaultValue": null,
10227                "isDeprecated": false,
10228                "deprecationReason": null
10229              }
10230            ],
10231            "type": {
10232              "kind": "NON_NULL",
10233              "name": null,
10234              "ofType": {
10235                "kind": "OBJECT",
10236                "name": "GetSignedAssetUploadSpecificationsResult",
10237                "ofType": null
10238              }
10239            },
10240            "isDeprecated": false,
10241            "deprecationReason": null
10242          }
10243        ],
10244        "inputFields": null,
10245        "interfaces": [],
10246        "enumValues": null,
10247        "possibleTypes": null
10248      },
10249      {
10250        "kind": "OBJECT",
10251        "name": "AssetQuery",
10252        "description": "Check to see if assets with given storageKeys exist",
10253        "fields": [
10254          {
10255            "name": "metadata",
10256            "description": null,
10257            "args": [
10258              {
10259                "name": "storageKeys",
10260                "description": null,
10261                "type": {
10262                  "kind": "NON_NULL",
10263                  "name": null,
10264                  "ofType": {
10265                    "kind": "LIST",
10266                    "name": null,
10267                    "ofType": {
10268                      "kind": "NON_NULL",
10269                      "name": null,
10270                      "ofType": {
10271                        "kind": "SCALAR",
10272                        "name": "String",
10273                        "ofType": null
10274                      }
10275                    }
10276                  }
10277                },
10278                "defaultValue": null,
10279                "isDeprecated": false,
10280                "deprecationReason": null
10281              }
10282            ],
10283            "type": {
10284              "kind": "NON_NULL",
10285              "name": null,
10286              "ofType": {
10287                "kind": "LIST",
10288                "name": null,
10289                "ofType": {
10290                  "kind": "NON_NULL",
10291                  "name": null,
10292                  "ofType": {
10293                    "kind": "OBJECT",
10294                    "name": "AssetMetadataResult",
10295                    "ofType": null
10296                  }
10297                }
10298              }
10299            },
10300            "isDeprecated": false,
10301            "deprecationReason": null
10302          }
10303        ],
10304        "inputFields": null,
10305        "interfaces": [],
10306        "enumValues": null,
10307        "possibleTypes": null
10308      },
10309      {
10310        "kind": "OBJECT",
10311        "name": "Billing",
10312        "description": null,
10313        "fields": [
10314          {
10315            "name": "charges",
10316            "description": "History of invoices",
10317            "args": [],
10318            "type": {
10319              "kind": "LIST",
10320              "name": null,
10321              "ofType": {
10322                "kind": "OBJECT",
10323                "name": "Charge",
10324                "ofType": null
10325              }
10326            },
10327            "isDeprecated": false,
10328            "deprecationReason": null
10329          },
10330          {
10331            "name": "id",
10332            "description": null,
10333            "args": [],
10334            "type": {
10335              "kind": "NON_NULL",
10336              "name": null,
10337              "ofType": {
10338                "kind": "SCALAR",
10339                "name": "ID",
10340                "ofType": null
10341              }
10342            },
10343            "isDeprecated": false,
10344            "deprecationReason": null
10345          },
10346          {
10347            "name": "payment",
10348            "description": null,
10349            "args": [],
10350            "type": {
10351              "kind": "OBJECT",
10352              "name": "PaymentDetails",
10353              "ofType": null
10354            },
10355            "isDeprecated": false,
10356            "deprecationReason": null
10357          },
10358          {
10359            "name": "subscription",
10360            "description": null,
10361            "args": [],
10362            "type": {
10363              "kind": "OBJECT",
10364              "name": "SubscriptionDetails",
10365              "ofType": null
10366            },
10367            "isDeprecated": false,
10368            "deprecationReason": null
10369          }
10370        ],
10371        "inputFields": null,
10372        "interfaces": [],
10373        "enumValues": null,
10374        "possibleTypes": null
10375      },
10376      {
10377        "kind": "OBJECT",
10378        "name": "BillingPeriod",
10379        "description": null,
10380        "fields": [
10381          {
10382            "name": "anchor",
10383            "description": null,
10384            "args": [],
10385            "type": {
10386              "kind": "NON_NULL",
10387              "name": null,
10388              "ofType": {
10389                "kind": "SCALAR",
10390                "name": "DateTime",
10391                "ofType": null
10392              }
10393            },
10394            "isDeprecated": false,
10395            "deprecationReason": null
10396          },
10397          {
10398            "name": "end",
10399            "description": null,
10400            "args": [],
10401            "type": {
10402              "kind": "NON_NULL",
10403              "name": null,
10404              "ofType": {
10405                "kind": "SCALAR",
10406                "name": "DateTime",
10407                "ofType": null
10408              }
10409            },
10410            "isDeprecated": false,
10411            "deprecationReason": null
10412          },
10413          {
10414            "name": "start",
10415            "description": null,
10416            "args": [],
10417            "type": {
10418              "kind": "NON_NULL",
10419              "name": null,
10420              "ofType": {
10421                "kind": "SCALAR",
10422                "name": "DateTime",
10423                "ofType": null
10424              }
10425            },
10426            "isDeprecated": false,
10427            "deprecationReason": null
10428          }
10429        ],
10430        "inputFields": null,
10431        "interfaces": [],
10432        "enumValues": null,
10433        "possibleTypes": null
10434      },
10435      {
10436        "kind": "SCALAR",
10437        "name": "Boolean",
10438        "description": "The `Boolean` scalar type represents `true` or `false`.",
10439        "fields": null,
10440        "inputFields": null,
10441        "interfaces": null,
10442        "enumValues": null,
10443        "possibleTypes": null
10444      },
10445      {
10446        "kind": "OBJECT",
10447        "name": "Build",
10448        "description": "Represents an EAS Build",
10449        "fields": [
10450          {
10451            "name": "activityTimestamp",
10452            "description": null,
10453            "args": [],
10454            "type": {
10455              "kind": "NON_NULL",
10456              "name": null,
10457              "ofType": {
10458                "kind": "SCALAR",
10459                "name": "DateTime",
10460                "ofType": null
10461              }
10462            },
10463            "isDeprecated": false,
10464            "deprecationReason": null
10465          },
10466          {
10467            "name": "actor",
10468            "description": null,
10469            "args": [],
10470            "type": {
10471              "kind": "INTERFACE",
10472              "name": "Actor",
10473              "ofType": null
10474            },
10475            "isDeprecated": false,
10476            "deprecationReason": null
10477          },
10478          {
10479            "name": "appBuildVersion",
10480            "description": null,
10481            "args": [],
10482            "type": {
10483              "kind": "SCALAR",
10484              "name": "String",
10485              "ofType": null
10486            },
10487            "isDeprecated": false,
10488            "deprecationReason": null
10489          },
10490          {
10491            "name": "appVersion",
10492            "description": null,
10493            "args": [],
10494            "type": {
10495              "kind": "SCALAR",
10496              "name": "String",
10497              "ofType": null
10498            },
10499            "isDeprecated": false,
10500            "deprecationReason": null
10501          },
10502          {
10503            "name": "artifacts",
10504            "description": null,
10505            "args": [],
10506            "type": {
10507              "kind": "OBJECT",
10508              "name": "BuildArtifacts",
10509              "ofType": null
10510            },
10511            "isDeprecated": false,
10512            "deprecationReason": null
10513          },
10514          {
10515            "name": "buildProfile",
10516            "description": null,
10517            "args": [],
10518            "type": {
10519              "kind": "SCALAR",
10520              "name": "String",
10521              "ofType": null
10522            },
10523            "isDeprecated": false,
10524            "deprecationReason": null
10525          },
10526          {
10527            "name": "canRetry",
10528            "description": null,
10529            "args": [],
10530            "type": {
10531              "kind": "NON_NULL",
10532              "name": null,
10533              "ofType": {
10534                "kind": "SCALAR",
10535                "name": "Boolean",
10536                "ofType": null
10537              }
10538            },
10539            "isDeprecated": false,
10540            "deprecationReason": null
10541          },
10542          {
10543            "name": "cancelingActor",
10544            "description": null,
10545            "args": [],
10546            "type": {
10547              "kind": "INTERFACE",
10548              "name": "Actor",
10549              "ofType": null
10550            },
10551            "isDeprecated": false,
10552            "deprecationReason": null
10553          },
10554          {
10555            "name": "channel",
10556            "description": null,
10557            "args": [],
10558            "type": {
10559              "kind": "SCALAR",
10560              "name": "String",
10561              "ofType": null
10562            },
10563            "isDeprecated": false,
10564            "deprecationReason": null
10565          },
10566          {
10567            "name": "completedAt",
10568            "description": null,
10569            "args": [],
10570            "type": {
10571              "kind": "SCALAR",
10572              "name": "DateTime",
10573              "ofType": null
10574            },
10575            "isDeprecated": false,
10576            "deprecationReason": null
10577          },
10578          {
10579            "name": "createdAt",
10580            "description": null,
10581            "args": [],
10582            "type": {
10583              "kind": "NON_NULL",
10584              "name": null,
10585              "ofType": {
10586                "kind": "SCALAR",
10587                "name": "DateTime",
10588                "ofType": null
10589              }
10590            },
10591            "isDeprecated": false,
10592            "deprecationReason": null
10593          },
10594          {
10595            "name": "distribution",
10596            "description": null,
10597            "args": [],
10598            "type": {
10599              "kind": "ENUM",
10600              "name": "DistributionType",
10601              "ofType": null
10602            },
10603            "isDeprecated": false,
10604            "deprecationReason": null
10605          },
10606          {
10607            "name": "enqueuedAt",
10608            "description": null,
10609            "args": [],
10610            "type": {
10611              "kind": "SCALAR",
10612              "name": "DateTime",
10613              "ofType": null
10614            },
10615            "isDeprecated": false,
10616            "deprecationReason": null
10617          },
10618          {
10619            "name": "error",
10620            "description": null,
10621            "args": [],
10622            "type": {
10623              "kind": "OBJECT",
10624              "name": "BuildError",
10625              "ofType": null
10626            },
10627            "isDeprecated": false,
10628            "deprecationReason": null
10629          },
10630          {
10631            "name": "estimatedWaitTimeLeftSeconds",
10632            "description": null,
10633            "args": [],
10634            "type": {
10635              "kind": "SCALAR",
10636              "name": "Int",
10637              "ofType": null
10638            },
10639            "isDeprecated": false,
10640            "deprecationReason": null
10641          },
10642          {
10643            "name": "expirationDate",
10644            "description": null,
10645            "args": [],
10646            "type": {
10647              "kind": "SCALAR",
10648              "name": "DateTime",
10649              "ofType": null
10650            },
10651            "isDeprecated": false,
10652            "deprecationReason": null
10653          },
10654          {
10655            "name": "gitCommitHash",
10656            "description": null,
10657            "args": [],
10658            "type": {
10659              "kind": "SCALAR",
10660              "name": "String",
10661              "ofType": null
10662            },
10663            "isDeprecated": false,
10664            "deprecationReason": null
10665          },
10666          {
10667            "name": "id",
10668            "description": null,
10669            "args": [],
10670            "type": {
10671              "kind": "NON_NULL",
10672              "name": null,
10673              "ofType": {
10674                "kind": "SCALAR",
10675                "name": "ID",
10676                "ofType": null
10677              }
10678            },
10679            "isDeprecated": false,
10680            "deprecationReason": null
10681          },
10682          {
10683            "name": "initialQueuePosition",
10684            "description": "Queue position is 1-indexed",
10685            "args": [],
10686            "type": {
10687              "kind": "SCALAR",
10688              "name": "Int",
10689              "ofType": null
10690            },
10691            "isDeprecated": false,
10692            "deprecationReason": null
10693          },
10694          {
10695            "name": "initiatingActor",
10696            "description": null,
10697            "args": [],
10698            "type": {
10699              "kind": "INTERFACE",
10700              "name": "Actor",
10701              "ofType": null
10702            },
10703            "isDeprecated": false,
10704            "deprecationReason": null
10705          },
10706          {
10707            "name": "initiatingUser",
10708            "description": null,
10709            "args": [],
10710            "type": {
10711              "kind": "OBJECT",
10712              "name": "User",
10713              "ofType": null
10714            },
10715            "isDeprecated": true,
10716            "deprecationReason": "User type is deprecated"
10717          },
10718          {
10719            "name": "iosEnterpriseProvisioning",
10720            "description": null,
10721            "args": [],
10722            "type": {
10723              "kind": "ENUM",
10724              "name": "BuildIosEnterpriseProvisioning",
10725              "ofType": null
10726            },
10727            "isDeprecated": false,
10728            "deprecationReason": null
10729          },
10730          {
10731            "name": "isGitWorkingTreeDirty",
10732            "description": null,
10733            "args": [],
10734            "type": {
10735              "kind": "SCALAR",
10736              "name": "Boolean",
10737              "ofType": null
10738            },
10739            "isDeprecated": false,
10740            "deprecationReason": null
10741          },
10742          {
10743            "name": "logFiles",
10744            "description": null,
10745            "args": [],
10746            "type": {
10747              "kind": "NON_NULL",
10748              "name": null,
10749              "ofType": {
10750                "kind": "LIST",
10751                "name": null,
10752                "ofType": {
10753                  "kind": "NON_NULL",
10754                  "name": null,
10755                  "ofType": {
10756                    "kind": "SCALAR",
10757                    "name": "String",
10758                    "ofType": null
10759                  }
10760                }
10761              }
10762            },
10763            "isDeprecated": false,
10764            "deprecationReason": null
10765          },
10766          {
10767            "name": "metrics",
10768            "description": null,
10769            "args": [],
10770            "type": {
10771              "kind": "OBJECT",
10772              "name": "BuildMetrics",
10773              "ofType": null
10774            },
10775            "isDeprecated": false,
10776            "deprecationReason": null
10777          },
10778          {
10779            "name": "parentBuild",
10780            "description": null,
10781            "args": [],
10782            "type": {
10783              "kind": "OBJECT",
10784              "name": "Build",
10785              "ofType": null
10786            },
10787            "isDeprecated": false,
10788            "deprecationReason": null
10789          },
10790          {
10791            "name": "platform",
10792            "description": null,
10793            "args": [],
10794            "type": {
10795              "kind": "NON_NULL",
10796              "name": null,
10797              "ofType": {
10798                "kind": "ENUM",
10799                "name": "AppPlatform",
10800                "ofType": null
10801              }
10802            },
10803            "isDeprecated": false,
10804            "deprecationReason": null
10805          },
10806          {
10807            "name": "priority",
10808            "description": null,
10809            "args": [],
10810            "type": {
10811              "kind": "NON_NULL",
10812              "name": null,
10813              "ofType": {
10814                "kind": "ENUM",
10815                "name": "BuildPriority",
10816                "ofType": null
10817              }
10818            },
10819            "isDeprecated": false,
10820            "deprecationReason": null
10821          },
10822          {
10823            "name": "project",
10824            "description": null,
10825            "args": [],
10826            "type": {
10827              "kind": "NON_NULL",
10828              "name": null,
10829              "ofType": {
10830                "kind": "INTERFACE",
10831                "name": "Project",
10832                "ofType": null
10833              }
10834            },
10835            "isDeprecated": false,
10836            "deprecationReason": null
10837          },
10838          {
10839            "name": "provisioningStartedAt",
10840            "description": null,
10841            "args": [],
10842            "type": {
10843              "kind": "SCALAR",
10844              "name": "DateTime",
10845              "ofType": null
10846            },
10847            "isDeprecated": false,
10848            "deprecationReason": null
10849          },
10850          {
10851            "name": "queuePosition",
10852            "description": "Queue position is 1-indexed",
10853            "args": [],
10854            "type": {
10855              "kind": "SCALAR",
10856              "name": "Int",
10857              "ofType": null
10858            },
10859            "isDeprecated": false,
10860            "deprecationReason": null
10861          },
10862          {
10863            "name": "reactNativeVersion",
10864            "description": null,
10865            "args": [],
10866            "type": {
10867              "kind": "SCALAR",
10868              "name": "String",
10869              "ofType": null
10870            },
10871            "isDeprecated": false,
10872            "deprecationReason": null
10873          },
10874          {
10875            "name": "releaseChannel",
10876            "description": null,
10877            "args": [],
10878            "type": {
10879              "kind": "SCALAR",
10880              "name": "String",
10881              "ofType": null
10882            },
10883            "isDeprecated": false,
10884            "deprecationReason": null
10885          },
10886          {
10887            "name": "runtimeVersion",
10888            "description": null,
10889            "args": [],
10890            "type": {
10891              "kind": "SCALAR",
10892              "name": "String",
10893              "ofType": null
10894            },
10895            "isDeprecated": false,
10896            "deprecationReason": null
10897          },
10898          {
10899            "name": "sdkVersion",
10900            "description": null,
10901            "args": [],
10902            "type": {
10903              "kind": "SCALAR",
10904              "name": "String",
10905              "ofType": null
10906            },
10907            "isDeprecated": false,
10908            "deprecationReason": null
10909          },
10910          {
10911            "name": "status",
10912            "description": null,
10913            "args": [],
10914            "type": {
10915              "kind": "NON_NULL",
10916              "name": null,
10917              "ofType": {
10918                "kind": "ENUM",
10919                "name": "BuildStatus",
10920                "ofType": null
10921              }
10922            },
10923            "isDeprecated": false,
10924            "deprecationReason": null
10925          },
10926          {
10927            "name": "submissions",
10928            "description": null,
10929            "args": [],
10930            "type": {
10931              "kind": "NON_NULL",
10932              "name": null,
10933              "ofType": {
10934                "kind": "LIST",
10935                "name": null,
10936                "ofType": {
10937                  "kind": "NON_NULL",
10938                  "name": null,
10939                  "ofType": {
10940                    "kind": "OBJECT",
10941                    "name": "Submission",
10942                    "ofType": null
10943                  }
10944                }
10945              }
10946            },
10947            "isDeprecated": false,
10948            "deprecationReason": null
10949          },
10950          {
10951            "name": "updatedAt",
10952            "description": null,
10953            "args": [],
10954            "type": {
10955              "kind": "NON_NULL",
10956              "name": null,
10957              "ofType": {
10958                "kind": "SCALAR",
10959                "name": "DateTime",
10960                "ofType": null
10961              }
10962            },
10963            "isDeprecated": false,
10964            "deprecationReason": null
10965          },
10966          {
10967            "name": "workerStartedAt",
10968            "description": null,
10969            "args": [],
10970            "type": {
10971              "kind": "SCALAR",
10972              "name": "DateTime",
10973              "ofType": null
10974            },
10975            "isDeprecated": false,
10976            "deprecationReason": null
10977          }
10978        ],
10979        "inputFields": null,
10980        "interfaces": [
10981          {
10982            "kind": "INTERFACE",
10983            "name": "ActivityTimelineProjectActivity",
10984            "ofType": null
10985          },
10986          {
10987            "kind": "INTERFACE",
10988            "name": "BuildOrBuildJob",
10989            "ofType": null
10990          }
10991        ],
10992        "enumValues": null,
10993        "possibleTypes": null
10994      },
10995      {
10996        "kind": "OBJECT",
10997        "name": "BuildArtifact",
10998        "description": null,
10999        "fields": [
11000          {
11001            "name": "manifestPlistUrl",
11002            "description": null,
11003            "args": [],
11004            "type": {
11005              "kind": "SCALAR",
11006              "name": "String",
11007              "ofType": null
11008            },
11009            "isDeprecated": false,
11010            "deprecationReason": null
11011          },
11012          {
11013            "name": "url",
11014            "description": null,
11015            "args": [],
11016            "type": {
11017              "kind": "NON_NULL",
11018              "name": null,
11019              "ofType": {
11020                "kind": "SCALAR",
11021                "name": "String",
11022                "ofType": null
11023              }
11024            },
11025            "isDeprecated": false,
11026            "deprecationReason": null
11027          }
11028        ],
11029        "inputFields": null,
11030        "interfaces": [],
11031        "enumValues": null,
11032        "possibleTypes": null
11033      },
11034      {
11035        "kind": "OBJECT",
11036        "name": "BuildArtifacts",
11037        "description": null,
11038        "fields": [
11039          {
11040            "name": "buildUrl",
11041            "description": null,
11042            "args": [],
11043            "type": {
11044              "kind": "SCALAR",
11045              "name": "String",
11046              "ofType": null
11047            },
11048            "isDeprecated": false,
11049            "deprecationReason": null
11050          },
11051          {
11052            "name": "xcodeBuildLogsUrl",
11053            "description": null,
11054            "args": [],
11055            "type": {
11056              "kind": "SCALAR",
11057              "name": "String",
11058              "ofType": null
11059            },
11060            "isDeprecated": false,
11061            "deprecationReason": null
11062          }
11063        ],
11064        "inputFields": null,
11065        "interfaces": [],
11066        "enumValues": null,
11067        "possibleTypes": null
11068      },
11069      {
11070        "kind": "INPUT_OBJECT",
11071        "name": "BuildCacheInput",
11072        "description": null,
11073        "fields": null,
11074        "inputFields": [
11075          {
11076            "name": "cacheDefaultPaths",
11077            "description": null,
11078            "type": {
11079              "kind": "SCALAR",
11080              "name": "Boolean",
11081              "ofType": null
11082            },
11083            "defaultValue": null,
11084            "isDeprecated": false,
11085            "deprecationReason": null
11086          },
11087          {
11088            "name": "clear",
11089            "description": null,
11090            "type": {
11091              "kind": "SCALAR",
11092              "name": "Boolean",
11093              "ofType": null
11094            },
11095            "defaultValue": null,
11096            "isDeprecated": false,
11097            "deprecationReason": null
11098          },
11099          {
11100            "name": "customPaths",
11101            "description": null,
11102            "type": {
11103              "kind": "LIST",
11104              "name": null,
11105              "ofType": {
11106                "kind": "SCALAR",
11107                "name": "String",
11108                "ofType": null
11109              }
11110            },
11111            "defaultValue": null,
11112            "isDeprecated": false,
11113            "deprecationReason": null
11114          },
11115          {
11116            "name": "disabled",
11117            "description": null,
11118            "type": {
11119              "kind": "SCALAR",
11120              "name": "Boolean",
11121              "ofType": null
11122            },
11123            "defaultValue": null,
11124            "isDeprecated": false,
11125            "deprecationReason": null
11126          },
11127          {
11128            "name": "key",
11129            "description": null,
11130            "type": {
11131              "kind": "SCALAR",
11132              "name": "String",
11133              "ofType": null
11134            },
11135            "defaultValue": null,
11136            "isDeprecated": false,
11137            "deprecationReason": null
11138          }
11139        ],
11140        "interfaces": null,
11141        "enumValues": null,
11142        "possibleTypes": null
11143      },
11144      {
11145        "kind": "ENUM",
11146        "name": "BuildCredentialsSource",
11147        "description": null,
11148        "fields": null,
11149        "inputFields": null,
11150        "interfaces": null,
11151        "enumValues": [
11152          {
11153            "name": "LOCAL",
11154            "description": null,
11155            "isDeprecated": false,
11156            "deprecationReason": null
11157          },
11158          {
11159            "name": "REMOTE",
11160            "description": null,
11161            "isDeprecated": false,
11162            "deprecationReason": null
11163          }
11164        ],
11165        "possibleTypes": null
11166      },
11167      {
11168        "kind": "OBJECT",
11169        "name": "BuildError",
11170        "description": null,
11171        "fields": [
11172          {
11173            "name": "docsUrl",
11174            "description": null,
11175            "args": [],
11176            "type": {
11177              "kind": "SCALAR",
11178              "name": "String",
11179              "ofType": null
11180            },
11181            "isDeprecated": false,
11182            "deprecationReason": null
11183          },
11184          {
11185            "name": "errorCode",
11186            "description": null,
11187            "args": [],
11188            "type": {
11189              "kind": "NON_NULL",
11190              "name": null,
11191              "ofType": {
11192                "kind": "SCALAR",
11193                "name": "String",
11194                "ofType": null
11195              }
11196            },
11197            "isDeprecated": false,
11198            "deprecationReason": null
11199          },
11200          {
11201            "name": "message",
11202            "description": null,
11203            "args": [],
11204            "type": {
11205              "kind": "NON_NULL",
11206              "name": null,
11207              "ofType": {
11208                "kind": "SCALAR",
11209                "name": "String",
11210                "ofType": null
11211              }
11212            },
11213            "isDeprecated": false,
11214            "deprecationReason": null
11215          }
11216        ],
11217        "inputFields": null,
11218        "interfaces": [],
11219        "enumValues": null,
11220        "possibleTypes": null
11221      },
11222      {
11223        "kind": "INPUT_OBJECT",
11224        "name": "BuildFilter",
11225        "description": null,
11226        "fields": null,
11227        "inputFields": [
11228          {
11229            "name": "appBuildVersion",
11230            "description": null,
11231            "type": {
11232              "kind": "SCALAR",
11233              "name": "String",
11234              "ofType": null
11235            },
11236            "defaultValue": null,
11237            "isDeprecated": false,
11238            "deprecationReason": null
11239          },
11240          {
11241            "name": "appIdentifier",
11242            "description": null,
11243            "type": {
11244              "kind": "SCALAR",
11245              "name": "String",
11246              "ofType": null
11247            },
11248            "defaultValue": null,
11249            "isDeprecated": false,
11250            "deprecationReason": null
11251          },
11252          {
11253            "name": "appVersion",
11254            "description": null,
11255            "type": {
11256              "kind": "SCALAR",
11257              "name": "String",
11258              "ofType": null
11259            },
11260            "defaultValue": null,
11261            "isDeprecated": false,
11262            "deprecationReason": null
11263          },
11264          {
11265            "name": "buildProfile",
11266            "description": null,
11267            "type": {
11268              "kind": "SCALAR",
11269              "name": "String",
11270              "ofType": null
11271            },
11272            "defaultValue": null,
11273            "isDeprecated": false,
11274            "deprecationReason": null
11275          },
11276          {
11277            "name": "channel",
11278            "description": null,
11279            "type": {
11280              "kind": "SCALAR",
11281              "name": "String",
11282              "ofType": null
11283            },
11284            "defaultValue": null,
11285            "isDeprecated": false,
11286            "deprecationReason": null
11287          },
11288          {
11289            "name": "distribution",
11290            "description": null,
11291            "type": {
11292              "kind": "ENUM",
11293              "name": "DistributionType",
11294              "ofType": null
11295            },
11296            "defaultValue": null,
11297            "isDeprecated": false,
11298            "deprecationReason": null
11299          },
11300          {
11301            "name": "gitCommitHash",
11302            "description": null,
11303            "type": {
11304              "kind": "SCALAR",
11305              "name": "String",
11306              "ofType": null
11307            },
11308            "defaultValue": null,
11309            "isDeprecated": false,
11310            "deprecationReason": null
11311          },
11312          {
11313            "name": "platform",
11314            "description": null,
11315            "type": {
11316              "kind": "ENUM",
11317              "name": "AppPlatform",
11318              "ofType": null
11319            },
11320            "defaultValue": null,
11321            "isDeprecated": false,
11322            "deprecationReason": null
11323          },
11324          {
11325            "name": "runtimeVersion",
11326            "description": null,
11327            "type": {
11328              "kind": "SCALAR",
11329              "name": "String",
11330              "ofType": null
11331            },
11332            "defaultValue": null,
11333            "isDeprecated": false,
11334            "deprecationReason": null
11335          },
11336          {
11337            "name": "sdkVersion",
11338            "description": null,
11339            "type": {
11340              "kind": "SCALAR",
11341              "name": "String",
11342              "ofType": null
11343            },
11344            "defaultValue": null,
11345            "isDeprecated": false,
11346            "deprecationReason": null
11347          },
11348          {
11349            "name": "status",
11350            "description": null,
11351            "type": {
11352              "kind": "ENUM",
11353              "name": "BuildStatus",
11354              "ofType": null
11355            },
11356            "defaultValue": null,
11357            "isDeprecated": false,
11358            "deprecationReason": null
11359          }
11360        ],
11361        "interfaces": null,
11362        "enumValues": null,
11363        "possibleTypes": null
11364      },
11365      {
11366        "kind": "ENUM",
11367        "name": "BuildIosEnterpriseProvisioning",
11368        "description": null,
11369        "fields": null,
11370        "inputFields": null,
11371        "interfaces": null,
11372        "enumValues": [
11373          {
11374            "name": "ADHOC",
11375            "description": null,
11376            "isDeprecated": false,
11377            "deprecationReason": null
11378          },
11379          {
11380            "name": "UNIVERSAL",
11381            "description": null,
11382            "isDeprecated": false,
11383            "deprecationReason": null
11384          }
11385        ],
11386        "possibleTypes": null
11387      },
11388      {
11389        "kind": "OBJECT",
11390        "name": "BuildJob",
11391        "description": "Represents an Standalone App build job",
11392        "fields": [
11393          {
11394            "name": "activityTimestamp",
11395            "description": null,
11396            "args": [],
11397            "type": {
11398              "kind": "NON_NULL",
11399              "name": null,
11400              "ofType": {
11401                "kind": "SCALAR",
11402                "name": "DateTime",
11403                "ofType": null
11404              }
11405            },
11406            "isDeprecated": false,
11407            "deprecationReason": null
11408          },
11409          {
11410            "name": "actor",
11411            "description": null,
11412            "args": [],
11413            "type": {
11414              "kind": "INTERFACE",
11415              "name": "Actor",
11416              "ofType": null
11417            },
11418            "isDeprecated": false,
11419            "deprecationReason": null
11420          },
11421          {
11422            "name": "app",
11423            "description": null,
11424            "args": [],
11425            "type": {
11426              "kind": "OBJECT",
11427              "name": "App",
11428              "ofType": null
11429            },
11430            "isDeprecated": false,
11431            "deprecationReason": null
11432          },
11433          {
11434            "name": "artifacts",
11435            "description": null,
11436            "args": [],
11437            "type": {
11438              "kind": "OBJECT",
11439              "name": "BuildArtifact",
11440              "ofType": null
11441            },
11442            "isDeprecated": false,
11443            "deprecationReason": null
11444          },
11445          {
11446            "name": "config",
11447            "description": null,
11448            "args": [],
11449            "type": {
11450              "kind": "SCALAR",
11451              "name": "JSON",
11452              "ofType": null
11453            },
11454            "isDeprecated": false,
11455            "deprecationReason": null
11456          },
11457          {
11458            "name": "created",
11459            "description": null,
11460            "args": [],
11461            "type": {
11462              "kind": "SCALAR",
11463              "name": "DateTime",
11464              "ofType": null
11465            },
11466            "isDeprecated": false,
11467            "deprecationReason": null
11468          },
11469          {
11470            "name": "expirationDate",
11471            "description": null,
11472            "args": [],
11473            "type": {
11474              "kind": "SCALAR",
11475              "name": "DateTime",
11476              "ofType": null
11477            },
11478            "isDeprecated": false,
11479            "deprecationReason": null
11480          },
11481          {
11482            "name": "fullExperienceName",
11483            "description": null,
11484            "args": [],
11485            "type": {
11486              "kind": "SCALAR",
11487              "name": "String",
11488              "ofType": null
11489            },
11490            "isDeprecated": false,
11491            "deprecationReason": null
11492          },
11493          {
11494            "name": "id",
11495            "description": null,
11496            "args": [],
11497            "type": {
11498              "kind": "NON_NULL",
11499              "name": null,
11500              "ofType": {
11501                "kind": "SCALAR",
11502                "name": "ID",
11503                "ofType": null
11504              }
11505            },
11506            "isDeprecated": false,
11507            "deprecationReason": null
11508          },
11509          {
11510            "name": "logs",
11511            "description": null,
11512            "args": [],
11513            "type": {
11514              "kind": "OBJECT",
11515              "name": "BuildLogs",
11516              "ofType": null
11517            },
11518            "isDeprecated": false,
11519            "deprecationReason": null
11520          },
11521          {
11522            "name": "platform",
11523            "description": null,
11524            "args": [],
11525            "type": {
11526              "kind": "NON_NULL",
11527              "name": null,
11528              "ofType": {
11529                "kind": "ENUM",
11530                "name": "AppPlatform",
11531                "ofType": null
11532              }
11533            },
11534            "isDeprecated": false,
11535            "deprecationReason": null
11536          },
11537          {
11538            "name": "release",
11539            "description": null,
11540            "args": [],
11541            "type": {
11542              "kind": "OBJECT",
11543              "name": "AppRelease",
11544              "ofType": null
11545            },
11546            "isDeprecated": false,
11547            "deprecationReason": null
11548          },
11549          {
11550            "name": "releaseChannel",
11551            "description": null,
11552            "args": [],
11553            "type": {
11554              "kind": "SCALAR",
11555              "name": "String",
11556              "ofType": null
11557            },
11558            "isDeprecated": false,
11559            "deprecationReason": null
11560          },
11561          {
11562            "name": "sdkVersion",
11563            "description": null,
11564            "args": [],
11565            "type": {
11566              "kind": "SCALAR",
11567              "name": "String",
11568              "ofType": null
11569            },
11570            "isDeprecated": false,
11571            "deprecationReason": null
11572          },
11573          {
11574            "name": "status",
11575            "description": null,
11576            "args": [],
11577            "type": {
11578              "kind": "ENUM",
11579              "name": "BuildJobStatus",
11580              "ofType": null
11581            },
11582            "isDeprecated": false,
11583            "deprecationReason": null
11584          },
11585          {
11586            "name": "updated",
11587            "description": null,
11588            "args": [],
11589            "type": {
11590              "kind": "SCALAR",
11591              "name": "DateTime",
11592              "ofType": null
11593            },
11594            "isDeprecated": false,
11595            "deprecationReason": null
11596          },
11597          {
11598            "name": "user",
11599            "description": null,
11600            "args": [],
11601            "type": {
11602              "kind": "OBJECT",
11603              "name": "User",
11604              "ofType": null
11605            },
11606            "isDeprecated": false,
11607            "deprecationReason": null
11608          }
11609        ],
11610        "inputFields": null,
11611        "interfaces": [
11612          {
11613            "kind": "INTERFACE",
11614            "name": "ActivityTimelineProjectActivity",
11615            "ofType": null
11616          },
11617          {
11618            "kind": "INTERFACE",
11619            "name": "BuildOrBuildJob",
11620            "ofType": null
11621          }
11622        ],
11623        "enumValues": null,
11624        "possibleTypes": null
11625      },
11626      {
11627        "kind": "ENUM",
11628        "name": "BuildJobLogsFormat",
11629        "description": null,
11630        "fields": null,
11631        "inputFields": null,
11632        "interfaces": null,
11633        "enumValues": [
11634          {
11635            "name": "JSON",
11636            "description": null,
11637            "isDeprecated": false,
11638            "deprecationReason": null
11639          },
11640          {
11641            "name": "RAW",
11642            "description": null,
11643            "isDeprecated": false,
11644            "deprecationReason": null
11645          }
11646        ],
11647        "possibleTypes": null
11648      },
11649      {
11650        "kind": "OBJECT",
11651        "name": "BuildJobMutation",
11652        "description": null,
11653        "fields": [
11654          {
11655            "name": "cancel",
11656            "description": null,
11657            "args": [],
11658            "type": {
11659              "kind": "NON_NULL",
11660              "name": null,
11661              "ofType": {
11662                "kind": "OBJECT",
11663                "name": "BuildJob",
11664                "ofType": null
11665              }
11666            },
11667            "isDeprecated": false,
11668            "deprecationReason": null
11669          },
11670          {
11671            "name": "del",
11672            "description": null,
11673            "args": [],
11674            "type": {
11675              "kind": "OBJECT",
11676              "name": "BuildJob",
11677              "ofType": null
11678            },
11679            "isDeprecated": false,
11680            "deprecationReason": null
11681          },
11682          {
11683            "name": "restart",
11684            "description": null,
11685            "args": [],
11686            "type": {
11687              "kind": "NON_NULL",
11688              "name": null,
11689              "ofType": {
11690                "kind": "OBJECT",
11691                "name": "BuildJob",
11692                "ofType": null
11693              }
11694            },
11695            "isDeprecated": false,
11696            "deprecationReason": null
11697          }
11698        ],
11699        "inputFields": null,
11700        "interfaces": [],
11701        "enumValues": null,
11702        "possibleTypes": null
11703      },
11704      {
11705        "kind": "OBJECT",
11706        "name": "BuildJobQuery",
11707        "description": null,
11708        "fields": [
11709          {
11710            "name": "all",
11711            "description": "get all build jobs by an optional filter",
11712            "args": [
11713              {
11714                "name": "experienceSlug",
11715                "description": null,
11716                "type": {
11717                  "kind": "SCALAR",
11718                  "name": "String",
11719                  "ofType": null
11720                },
11721                "defaultValue": null,
11722                "isDeprecated": false,
11723                "deprecationReason": null
11724              },
11725              {
11726                "name": "limit",
11727                "description": null,
11728                "type": {
11729                  "kind": "SCALAR",
11730                  "name": "Int",
11731                  "ofType": null
11732                },
11733                "defaultValue": null,
11734                "isDeprecated": false,
11735                "deprecationReason": null
11736              },
11737              {
11738                "name": "offset",
11739                "description": null,
11740                "type": {
11741                  "kind": "SCALAR",
11742                  "name": "Int",
11743                  "ofType": null
11744                },
11745                "defaultValue": null,
11746                "isDeprecated": false,
11747                "deprecationReason": null
11748              },
11749              {
11750                "name": "showAdminView",
11751                "description": "allows admins to see every entry by any user, but it scopes it to the user's own entries by default",
11752                "type": {
11753                  "kind": "SCALAR",
11754                  "name": "Boolean",
11755                  "ofType": null
11756                },
11757                "defaultValue": "false",
11758                "isDeprecated": false,
11759                "deprecationReason": null
11760              },
11761              {
11762                "name": "status",
11763                "description": null,
11764                "type": {
11765                  "kind": "ENUM",
11766                  "name": "BuildJobStatus",
11767                  "ofType": null
11768                },
11769                "defaultValue": null,
11770                "isDeprecated": false,
11771                "deprecationReason": null
11772              },
11773              {
11774                "name": "username",
11775                "description": null,
11776                "type": {
11777                  "kind": "SCALAR",
11778                  "name": "String",
11779                  "ofType": null
11780                },
11781                "defaultValue": null,
11782                "isDeprecated": false,
11783                "deprecationReason": null
11784              }
11785            ],
11786            "type": {
11787              "kind": "NON_NULL",
11788              "name": null,
11789              "ofType": {
11790                "kind": "LIST",
11791                "name": null,
11792                "ofType": {
11793                  "kind": "OBJECT",
11794                  "name": "BuildJob",
11795                  "ofType": null
11796                }
11797              }
11798            },
11799            "isDeprecated": true,
11800            "deprecationReason": "Prefer Account.buildJobs or App.buildJobs"
11801          },
11802          {
11803            "name": "byId",
11804            "description": null,
11805            "args": [
11806              {
11807                "name": "buildId",
11808                "description": null,
11809                "type": {
11810                  "kind": "NON_NULL",
11811                  "name": null,
11812                  "ofType": {
11813                    "kind": "SCALAR",
11814                    "name": "ID",
11815                    "ofType": null
11816                  }
11817                },
11818                "defaultValue": null,
11819                "isDeprecated": false,
11820                "deprecationReason": null
11821              }
11822            ],
11823            "type": {
11824              "kind": "NON_NULL",
11825              "name": null,
11826              "ofType": {
11827                "kind": "OBJECT",
11828                "name": "BuildJob",
11829                "ofType": null
11830              }
11831            },
11832            "isDeprecated": false,
11833            "deprecationReason": null
11834          }
11835        ],
11836        "inputFields": null,
11837        "interfaces": [],
11838        "enumValues": null,
11839        "possibleTypes": null
11840      },
11841      {
11842        "kind": "ENUM",
11843        "name": "BuildJobStatus",
11844        "description": null,
11845        "fields": null,
11846        "inputFields": null,
11847        "interfaces": null,
11848        "enumValues": [
11849          {
11850            "name": "ERRORED",
11851            "description": null,
11852            "isDeprecated": false,
11853            "deprecationReason": null
11854          },
11855          {
11856            "name": "FINISHED",
11857            "description": null,
11858            "isDeprecated": false,
11859            "deprecationReason": null
11860          },
11861          {
11862            "name": "IN_PROGRESS",
11863            "description": null,
11864            "isDeprecated": false,
11865            "deprecationReason": null
11866          },
11867          {
11868            "name": "PENDING",
11869            "description": null,
11870            "isDeprecated": false,
11871            "deprecationReason": null
11872          },
11873          {
11874            "name": "SENT_TO_QUEUE",
11875            "description": null,
11876            "isDeprecated": false,
11877            "deprecationReason": null
11878          },
11879          {
11880            "name": "STARTED",
11881            "description": null,
11882            "isDeprecated": false,
11883            "deprecationReason": null
11884          }
11885        ],
11886        "possibleTypes": null
11887      },
11888      {
11889        "kind": "OBJECT",
11890        "name": "BuildLogs",
11891        "description": null,
11892        "fields": [
11893          {
11894            "name": "format",
11895            "description": null,
11896            "args": [],
11897            "type": {
11898              "kind": "ENUM",
11899              "name": "BuildJobLogsFormat",
11900              "ofType": null
11901            },
11902            "isDeprecated": false,
11903            "deprecationReason": null
11904          },
11905          {
11906            "name": "url",
11907            "description": null,
11908            "args": [],
11909            "type": {
11910              "kind": "SCALAR",
11911              "name": "String",
11912              "ofType": null
11913            },
11914            "isDeprecated": false,
11915            "deprecationReason": null
11916          }
11917        ],
11918        "inputFields": null,
11919        "interfaces": [],
11920        "enumValues": null,
11921        "possibleTypes": null
11922      },
11923      {
11924        "kind": "INPUT_OBJECT",
11925        "name": "BuildMetadataInput",
11926        "description": null,
11927        "fields": null,
11928        "inputFields": [
11929          {
11930            "name": "appBuildVersion",
11931            "description": null,
11932            "type": {
11933              "kind": "SCALAR",
11934              "name": "String",
11935              "ofType": null
11936            },
11937            "defaultValue": null,
11938            "isDeprecated": false,
11939            "deprecationReason": null
11940          },
11941          {
11942            "name": "appIdentifier",
11943            "description": null,
11944            "type": {
11945              "kind": "SCALAR",
11946              "name": "String",
11947              "ofType": null
11948            },
11949            "defaultValue": null,
11950            "isDeprecated": false,
11951            "deprecationReason": null
11952          },
11953          {
11954            "name": "appName",
11955            "description": null,
11956            "type": {
11957              "kind": "SCALAR",
11958              "name": "String",
11959              "ofType": null
11960            },
11961            "defaultValue": null,
11962            "isDeprecated": false,
11963            "deprecationReason": null
11964          },
11965          {
11966            "name": "appVersion",
11967            "description": null,
11968            "type": {
11969              "kind": "SCALAR",
11970              "name": "String",
11971              "ofType": null
11972            },
11973            "defaultValue": null,
11974            "isDeprecated": false,
11975            "deprecationReason": null
11976          },
11977          {
11978            "name": "buildProfile",
11979            "description": null,
11980            "type": {
11981              "kind": "SCALAR",
11982              "name": "String",
11983              "ofType": null
11984            },
11985            "defaultValue": null,
11986            "isDeprecated": false,
11987            "deprecationReason": null
11988          },
11989          {
11990            "name": "channel",
11991            "description": null,
11992            "type": {
11993              "kind": "SCALAR",
11994              "name": "String",
11995              "ofType": null
11996            },
11997            "defaultValue": null,
11998            "isDeprecated": false,
11999            "deprecationReason": null
12000          },
12001          {
12002            "name": "cliVersion",
12003            "description": null,
12004            "type": {
12005              "kind": "SCALAR",
12006              "name": "String",
12007              "ofType": null
12008            },
12009            "defaultValue": null,
12010            "isDeprecated": false,
12011            "deprecationReason": null
12012          },
12013          {
12014            "name": "credentialsSource",
12015            "description": null,
12016            "type": {
12017              "kind": "ENUM",
12018              "name": "BuildCredentialsSource",
12019              "ofType": null
12020            },
12021            "defaultValue": null,
12022            "isDeprecated": false,
12023            "deprecationReason": null
12024          },
12025          {
12026            "name": "distribution",
12027            "description": null,
12028            "type": {
12029              "kind": "ENUM",
12030              "name": "DistributionType",
12031              "ofType": null
12032            },
12033            "defaultValue": null,
12034            "isDeprecated": false,
12035            "deprecationReason": null
12036          },
12037          {
12038            "name": "gitCommitHash",
12039            "description": null,
12040            "type": {
12041              "kind": "SCALAR",
12042              "name": "String",
12043              "ofType": null
12044            },
12045            "defaultValue": null,
12046            "isDeprecated": false,
12047            "deprecationReason": null
12048          },
12049          {
12050            "name": "iosEnterpriseProvisioning",
12051            "description": null,
12052            "type": {
12053              "kind": "ENUM",
12054              "name": "BuildIosEnterpriseProvisioning",
12055              "ofType": null
12056            },
12057            "defaultValue": null,
12058            "isDeprecated": false,
12059            "deprecationReason": null
12060          },
12061          {
12062            "name": "isGitWorkingTreeDirty",
12063            "description": null,
12064            "type": {
12065              "kind": "SCALAR",
12066              "name": "Boolean",
12067              "ofType": null
12068            },
12069            "defaultValue": null,
12070            "isDeprecated": false,
12071            "deprecationReason": null
12072          },
12073          {
12074            "name": "reactNativeVersion",
12075            "description": null,
12076            "type": {
12077              "kind": "SCALAR",
12078              "name": "String",
12079              "ofType": null
12080            },
12081            "defaultValue": null,
12082            "isDeprecated": false,
12083            "deprecationReason": null
12084          },
12085          {
12086            "name": "releaseChannel",
12087            "description": null,
12088            "type": {
12089              "kind": "SCALAR",
12090              "name": "String",
12091              "ofType": null
12092            },
12093            "defaultValue": null,
12094            "isDeprecated": false,
12095            "deprecationReason": null
12096          },
12097          {
12098            "name": "runtimeVersion",
12099            "description": null,
12100            "type": {
12101              "kind": "SCALAR",
12102              "name": "String",
12103              "ofType": null
12104            },
12105            "defaultValue": null,
12106            "isDeprecated": false,
12107            "deprecationReason": null
12108          },
12109          {
12110            "name": "sdkVersion",
12111            "description": null,
12112            "type": {
12113              "kind": "SCALAR",
12114              "name": "String",
12115              "ofType": null
12116            },
12117            "defaultValue": null,
12118            "isDeprecated": false,
12119            "deprecationReason": null
12120          },
12121          {
12122            "name": "trackingContext",
12123            "description": null,
12124            "type": {
12125              "kind": "SCALAR",
12126              "name": "JSONObject",
12127              "ofType": null
12128            },
12129            "defaultValue": null,
12130            "isDeprecated": false,
12131            "deprecationReason": null
12132          },
12133          {
12134            "name": "username",
12135            "description": null,
12136            "type": {
12137              "kind": "SCALAR",
12138              "name": "String",
12139              "ofType": null
12140            },
12141            "defaultValue": null,
12142            "isDeprecated": false,
12143            "deprecationReason": null
12144          },
12145          {
12146            "name": "workflow",
12147            "description": null,
12148            "type": {
12149              "kind": "ENUM",
12150              "name": "BuildWorkflow",
12151              "ofType": null
12152            },
12153            "defaultValue": null,
12154            "isDeprecated": false,
12155            "deprecationReason": null
12156          }
12157        ],
12158        "interfaces": null,
12159        "enumValues": null,
12160        "possibleTypes": null
12161      },
12162      {
12163        "kind": "OBJECT",
12164        "name": "BuildMetrics",
12165        "description": null,
12166        "fields": [
12167          {
12168            "name": "buildDuration",
12169            "description": null,
12170            "args": [],
12171            "type": {
12172              "kind": "SCALAR",
12173              "name": "Int",
12174              "ofType": null
12175            },
12176            "isDeprecated": false,
12177            "deprecationReason": null
12178          },
12179          {
12180            "name": "buildQueueTime",
12181            "description": null,
12182            "args": [],
12183            "type": {
12184              "kind": "SCALAR",
12185              "name": "Int",
12186              "ofType": null
12187            },
12188            "isDeprecated": false,
12189            "deprecationReason": null
12190          },
12191          {
12192            "name": "buildWaitTime",
12193            "description": null,
12194            "args": [],
12195            "type": {
12196              "kind": "SCALAR",
12197              "name": "Int",
12198              "ofType": null
12199            },
12200            "isDeprecated": false,
12201            "deprecationReason": null
12202          }
12203        ],
12204        "inputFields": null,
12205        "interfaces": [],
12206        "enumValues": null,
12207        "possibleTypes": null
12208      },
12209      {
12210        "kind": "OBJECT",
12211        "name": "BuildMutation",
12212        "description": null,
12213        "fields": [
12214          {
12215            "name": "cancel",
12216            "description": "Cancel an EAS Build build",
12217            "args": [],
12218            "type": {
12219              "kind": "NON_NULL",
12220              "name": null,
12221              "ofType": {
12222                "kind": "OBJECT",
12223                "name": "Build",
12224                "ofType": null
12225              }
12226            },
12227            "isDeprecated": true,
12228            "deprecationReason": "Use cancelBuild instead"
12229          },
12230          {
12231            "name": "cancelBuild",
12232            "description": "Cancel an EAS Build build",
12233            "args": [
12234              {
12235                "name": "buildId",
12236                "description": null,
12237                "type": {
12238                  "kind": "NON_NULL",
12239                  "name": null,
12240                  "ofType": {
12241                    "kind": "SCALAR",
12242                    "name": "ID",
12243                    "ofType": null
12244                  }
12245                },
12246                "defaultValue": null,
12247                "isDeprecated": false,
12248                "deprecationReason": null
12249              }
12250            ],
12251            "type": {
12252              "kind": "NON_NULL",
12253              "name": null,
12254              "ofType": {
12255                "kind": "OBJECT",
12256                "name": "Build",
12257                "ofType": null
12258              }
12259            },
12260            "isDeprecated": false,
12261            "deprecationReason": null
12262          },
12263          {
12264            "name": "createAndroidBuild",
12265            "description": "Create an Android build",
12266            "args": [
12267              {
12268                "name": "appId",
12269                "description": null,
12270                "type": {
12271                  "kind": "NON_NULL",
12272                  "name": null,
12273                  "ofType": {
12274                    "kind": "SCALAR",
12275                    "name": "ID",
12276                    "ofType": null
12277                  }
12278                },
12279                "defaultValue": null,
12280                "isDeprecated": false,
12281                "deprecationReason": null
12282              },
12283              {
12284                "name": "job",
12285                "description": null,
12286                "type": {
12287                  "kind": "NON_NULL",
12288                  "name": null,
12289                  "ofType": {
12290                    "kind": "INPUT_OBJECT",
12291                    "name": "AndroidJobInput",
12292                    "ofType": null
12293                  }
12294                },
12295                "defaultValue": null,
12296                "isDeprecated": false,
12297                "deprecationReason": null
12298              },
12299              {
12300                "name": "metadata",
12301                "description": null,
12302                "type": {
12303                  "kind": "INPUT_OBJECT",
12304                  "name": "BuildMetadataInput",
12305                  "ofType": null
12306                },
12307                "defaultValue": null,
12308                "isDeprecated": false,
12309                "deprecationReason": null
12310              }
12311            ],
12312            "type": {
12313              "kind": "NON_NULL",
12314              "name": null,
12315              "ofType": {
12316                "kind": "OBJECT",
12317                "name": "CreateBuildResult",
12318                "ofType": null
12319              }
12320            },
12321            "isDeprecated": false,
12322            "deprecationReason": null
12323          },
12324          {
12325            "name": "createIosBuild",
12326            "description": "Create an iOS build",
12327            "args": [
12328              {
12329                "name": "appId",
12330                "description": null,
12331                "type": {
12332                  "kind": "NON_NULL",
12333                  "name": null,
12334                  "ofType": {
12335                    "kind": "SCALAR",
12336                    "name": "ID",
12337                    "ofType": null
12338                  }
12339                },
12340                "defaultValue": null,
12341                "isDeprecated": false,
12342                "deprecationReason": null
12343              },
12344              {
12345                "name": "job",
12346                "description": null,
12347                "type": {
12348                  "kind": "NON_NULL",
12349                  "name": null,
12350                  "ofType": {
12351                    "kind": "INPUT_OBJECT",
12352                    "name": "IosJobInput",
12353                    "ofType": null
12354                  }
12355                },
12356                "defaultValue": null,
12357                "isDeprecated": false,
12358                "deprecationReason": null
12359              },
12360              {
12361                "name": "metadata",
12362                "description": null,
12363                "type": {
12364                  "kind": "INPUT_OBJECT",
12365                  "name": "BuildMetadataInput",
12366                  "ofType": null
12367                },
12368                "defaultValue": null,
12369                "isDeprecated": false,
12370                "deprecationReason": null
12371              }
12372            ],
12373            "type": {
12374              "kind": "NON_NULL",
12375              "name": null,
12376              "ofType": {
12377                "kind": "OBJECT",
12378                "name": "CreateBuildResult",
12379                "ofType": null
12380              }
12381            },
12382            "isDeprecated": false,
12383            "deprecationReason": null
12384          },
12385          {
12386            "name": "deleteBuild",
12387            "description": "Delete an EAS Build build",
12388            "args": [
12389              {
12390                "name": "buildId",
12391                "description": null,
12392                "type": {
12393                  "kind": "NON_NULL",
12394                  "name": null,
12395                  "ofType": {
12396                    "kind": "SCALAR",
12397                    "name": "ID",
12398                    "ofType": null
12399                  }
12400                },
12401                "defaultValue": null,
12402                "isDeprecated": false,
12403                "deprecationReason": null
12404              }
12405            ],
12406            "type": {
12407              "kind": "NON_NULL",
12408              "name": null,
12409              "ofType": {
12410                "kind": "OBJECT",
12411                "name": "Build",
12412                "ofType": null
12413              }
12414            },
12415            "isDeprecated": false,
12416            "deprecationReason": null
12417          },
12418          {
12419            "name": "retryBuild",
12420            "description": "Retry an EAS Build build",
12421            "args": [
12422              {
12423                "name": "buildId",
12424                "description": null,
12425                "type": {
12426                  "kind": "NON_NULL",
12427                  "name": null,
12428                  "ofType": {
12429                    "kind": "SCALAR",
12430                    "name": "ID",
12431                    "ofType": null
12432                  }
12433                },
12434                "defaultValue": null,
12435                "isDeprecated": false,
12436                "deprecationReason": null
12437              }
12438            ],
12439            "type": {
12440              "kind": "NON_NULL",
12441              "name": null,
12442              "ofType": {
12443                "kind": "OBJECT",
12444                "name": "Build",
12445                "ofType": null
12446              }
12447            },
12448            "isDeprecated": false,
12449            "deprecationReason": null
12450          }
12451        ],
12452        "inputFields": null,
12453        "interfaces": [],
12454        "enumValues": null,
12455        "possibleTypes": null
12456      },
12457      {
12458        "kind": "INTERFACE",
12459        "name": "BuildOrBuildJob",
12460        "description": null,
12461        "fields": [
12462          {
12463            "name": "id",
12464            "description": null,
12465            "args": [],
12466            "type": {
12467              "kind": "NON_NULL",
12468              "name": null,
12469              "ofType": {
12470                "kind": "SCALAR",
12471                "name": "ID",
12472                "ofType": null
12473              }
12474            },
12475            "isDeprecated": false,
12476            "deprecationReason": null
12477          }
12478        ],
12479        "inputFields": null,
12480        "interfaces": [],
12481        "enumValues": null,
12482        "possibleTypes": [
12483          {
12484            "kind": "OBJECT",
12485            "name": "Build",
12486            "ofType": null
12487          },
12488          {
12489            "kind": "OBJECT",
12490            "name": "BuildJob",
12491            "ofType": null
12492          }
12493        ]
12494      },
12495      {
12496        "kind": "ENUM",
12497        "name": "BuildPriority",
12498        "description": null,
12499        "fields": null,
12500        "inputFields": null,
12501        "interfaces": null,
12502        "enumValues": [
12503          {
12504            "name": "HIGH",
12505            "description": null,
12506            "isDeprecated": false,
12507            "deprecationReason": null
12508          },
12509          {
12510            "name": "NORMAL",
12511            "description": null,
12512            "isDeprecated": false,
12513            "deprecationReason": null
12514          }
12515        ],
12516        "possibleTypes": null
12517      },
12518      {
12519        "kind": "OBJECT",
12520        "name": "BuildPublicData",
12521        "description": "Publicly visible data for a Build.",
12522        "fields": [
12523          {
12524            "name": "artifacts",
12525            "description": null,
12526            "args": [],
12527            "type": {
12528              "kind": "NON_NULL",
12529              "name": null,
12530              "ofType": {
12531                "kind": "OBJECT",
12532                "name": "PublicArtifacts",
12533                "ofType": null
12534              }
12535            },
12536            "isDeprecated": false,
12537            "deprecationReason": null
12538          },
12539          {
12540            "name": "distribution",
12541            "description": null,
12542            "args": [],
12543            "type": {
12544              "kind": "ENUM",
12545              "name": "DistributionType",
12546              "ofType": null
12547            },
12548            "isDeprecated": false,
12549            "deprecationReason": null
12550          },
12551          {
12552            "name": "id",
12553            "description": null,
12554            "args": [],
12555            "type": {
12556              "kind": "NON_NULL",
12557              "name": null,
12558              "ofType": {
12559                "kind": "SCALAR",
12560                "name": "ID",
12561                "ofType": null
12562              }
12563            },
12564            "isDeprecated": false,
12565            "deprecationReason": null
12566          },
12567          {
12568            "name": "platform",
12569            "description": null,
12570            "args": [],
12571            "type": {
12572              "kind": "NON_NULL",
12573              "name": null,
12574              "ofType": {
12575                "kind": "ENUM",
12576                "name": "AppPlatform",
12577                "ofType": null
12578              }
12579            },
12580            "isDeprecated": false,
12581            "deprecationReason": null
12582          },
12583          {
12584            "name": "project",
12585            "description": null,
12586            "args": [],
12587            "type": {
12588              "kind": "NON_NULL",
12589              "name": null,
12590              "ofType": {
12591                "kind": "OBJECT",
12592                "name": "ProjectPublicData",
12593                "ofType": null
12594              }
12595            },
12596            "isDeprecated": false,
12597            "deprecationReason": null
12598          },
12599          {
12600            "name": "status",
12601            "description": null,
12602            "args": [],
12603            "type": {
12604              "kind": "NON_NULL",
12605              "name": null,
12606              "ofType": {
12607                "kind": "ENUM",
12608                "name": "BuildStatus",
12609                "ofType": null
12610              }
12611            },
12612            "isDeprecated": false,
12613            "deprecationReason": null
12614          }
12615        ],
12616        "inputFields": null,
12617        "interfaces": [],
12618        "enumValues": null,
12619        "possibleTypes": null
12620      },
12621      {
12622        "kind": "OBJECT",
12623        "name": "BuildPublicDataQuery",
12624        "description": null,
12625        "fields": [
12626          {
12627            "name": "byId",
12628            "description": "Get BuildPublicData by ID",
12629            "args": [
12630              {
12631                "name": "id",
12632                "description": null,
12633                "type": {
12634                  "kind": "NON_NULL",
12635                  "name": null,
12636                  "ofType": {
12637                    "kind": "SCALAR",
12638                    "name": "ID",
12639                    "ofType": null
12640                  }
12641                },
12642                "defaultValue": null,
12643                "isDeprecated": false,
12644                "deprecationReason": null
12645              }
12646            ],
12647            "type": {
12648              "kind": "OBJECT",
12649              "name": "BuildPublicData",
12650              "ofType": null
12651            },
12652            "isDeprecated": false,
12653            "deprecationReason": null
12654          }
12655        ],
12656        "inputFields": null,
12657        "interfaces": [],
12658        "enumValues": null,
12659        "possibleTypes": null
12660      },
12661      {
12662        "kind": "OBJECT",
12663        "name": "BuildQuery",
12664        "description": null,
12665        "fields": [
12666          {
12667            "name": "all",
12668            "description": "Get all builds.\nBy default, they are sorted from latest to oldest.\nAvailable only for admin users.",
12669            "args": [
12670              {
12671                "name": "limit",
12672                "description": null,
12673                "type": {
12674                  "kind": "SCALAR",
12675                  "name": "Int",
12676                  "ofType": null
12677                },
12678                "defaultValue": null,
12679                "isDeprecated": false,
12680                "deprecationReason": null
12681              },
12682              {
12683                "name": "offset",
12684                "description": null,
12685                "type": {
12686                  "kind": "SCALAR",
12687                  "name": "Int",
12688                  "ofType": null
12689                },
12690                "defaultValue": null,
12691                "isDeprecated": false,
12692                "deprecationReason": null
12693              },
12694              {
12695                "name": "order",
12696                "description": null,
12697                "type": {
12698                  "kind": "ENUM",
12699                  "name": "Order",
12700                  "ofType": null
12701                },
12702                "defaultValue": null,
12703                "isDeprecated": false,
12704                "deprecationReason": null
12705              },
12706              {
12707                "name": "statuses",
12708                "description": null,
12709                "type": {
12710                  "kind": "LIST",
12711                  "name": null,
12712                  "ofType": {
12713                    "kind": "NON_NULL",
12714                    "name": null,
12715                    "ofType": {
12716                      "kind": "ENUM",
12717                      "name": "BuildStatus",
12718                      "ofType": null
12719                    }
12720                  }
12721                },
12722                "defaultValue": null,
12723                "isDeprecated": false,
12724                "deprecationReason": null
12725              }
12726            ],
12727            "type": {
12728              "kind": "NON_NULL",
12729              "name": null,
12730              "ofType": {
12731                "kind": "LIST",
12732                "name": null,
12733                "ofType": {
12734                  "kind": "NON_NULL",
12735                  "name": null,
12736                  "ofType": {
12737                    "kind": "OBJECT",
12738                    "name": "Build",
12739                    "ofType": null
12740                  }
12741                }
12742              }
12743            },
12744            "isDeprecated": false,
12745            "deprecationReason": null
12746          },
12747          {
12748            "name": "allForApp",
12749            "description": "Get all builds for a specific app.\nThey are sorted from latest to oldest.",
12750            "args": [
12751              {
12752                "name": "appId",
12753                "description": null,
12754                "type": {
12755                  "kind": "NON_NULL",
12756                  "name": null,
12757                  "ofType": {
12758                    "kind": "SCALAR",
12759                    "name": "String",
12760                    "ofType": null
12761                  }
12762                },
12763                "defaultValue": null,
12764                "isDeprecated": false,
12765                "deprecationReason": null
12766              },
12767              {
12768                "name": "limit",
12769                "description": null,
12770                "type": {
12771                  "kind": "SCALAR",
12772                  "name": "Int",
12773                  "ofType": null
12774                },
12775                "defaultValue": null,
12776                "isDeprecated": false,
12777                "deprecationReason": null
12778              },
12779              {
12780                "name": "offset",
12781                "description": null,
12782                "type": {
12783                  "kind": "SCALAR",
12784                  "name": "Int",
12785                  "ofType": null
12786                },
12787                "defaultValue": null,
12788                "isDeprecated": false,
12789                "deprecationReason": null
12790              },
12791              {
12792                "name": "platform",
12793                "description": null,
12794                "type": {
12795                  "kind": "ENUM",
12796                  "name": "AppPlatform",
12797                  "ofType": null
12798                },
12799                "defaultValue": null,
12800                "isDeprecated": false,
12801                "deprecationReason": null
12802              },
12803              {
12804                "name": "status",
12805                "description": null,
12806                "type": {
12807                  "kind": "ENUM",
12808                  "name": "BuildStatus",
12809                  "ofType": null
12810                },
12811                "defaultValue": null,
12812                "isDeprecated": false,
12813                "deprecationReason": null
12814              }
12815            ],
12816            "type": {
12817              "kind": "NON_NULL",
12818              "name": null,
12819              "ofType": {
12820                "kind": "LIST",
12821                "name": null,
12822                "ofType": {
12823                  "kind": "OBJECT",
12824                  "name": "Build",
12825                  "ofType": null
12826                }
12827              }
12828            },
12829            "isDeprecated": true,
12830            "deprecationReason": "Use App.builds instead"
12831          },
12832          {
12833            "name": "byId",
12834            "description": "Look up EAS Build by build ID",
12835            "args": [
12836              {
12837                "name": "buildId",
12838                "description": null,
12839                "type": {
12840                  "kind": "NON_NULL",
12841                  "name": null,
12842                  "ofType": {
12843                    "kind": "SCALAR",
12844                    "name": "ID",
12845                    "ofType": null
12846                  }
12847                },
12848                "defaultValue": null,
12849                "isDeprecated": false,
12850                "deprecationReason": null
12851              }
12852            ],
12853            "type": {
12854              "kind": "NON_NULL",
12855              "name": null,
12856              "ofType": {
12857                "kind": "OBJECT",
12858                "name": "Build",
12859                "ofType": null
12860              }
12861            },
12862            "isDeprecated": false,
12863            "deprecationReason": null
12864          }
12865        ],
12866        "inputFields": null,
12867        "interfaces": [],
12868        "enumValues": null,
12869        "possibleTypes": null
12870      },
12871      {
12872        "kind": "ENUM",
12873        "name": "BuildStatus",
12874        "description": null,
12875        "fields": null,
12876        "inputFields": null,
12877        "interfaces": null,
12878        "enumValues": [
12879          {
12880            "name": "CANCELED",
12881            "description": null,
12882            "isDeprecated": false,
12883            "deprecationReason": null
12884          },
12885          {
12886            "name": "ERRORED",
12887            "description": null,
12888            "isDeprecated": false,
12889            "deprecationReason": null
12890          },
12891          {
12892            "name": "FINISHED",
12893            "description": null,
12894            "isDeprecated": false,
12895            "deprecationReason": null
12896          },
12897          {
12898            "name": "IN_PROGRESS",
12899            "description": null,
12900            "isDeprecated": false,
12901            "deprecationReason": null
12902          },
12903          {
12904            "name": "IN_QUEUE",
12905            "description": null,
12906            "isDeprecated": false,
12907            "deprecationReason": null
12908          },
12909          {
12910            "name": "NEW",
12911            "description": null,
12912            "isDeprecated": false,
12913            "deprecationReason": null
12914          }
12915        ],
12916        "possibleTypes": null
12917      },
12918      {
12919        "kind": "INPUT_OBJECT",
12920        "name": "BuildUpdatesInput",
12921        "description": null,
12922        "fields": null,
12923        "inputFields": [
12924          {
12925            "name": "channel",
12926            "description": null,
12927            "type": {
12928              "kind": "SCALAR",
12929              "name": "String",
12930              "ofType": null
12931            },
12932            "defaultValue": null,
12933            "isDeprecated": false,
12934            "deprecationReason": null
12935          }
12936        ],
12937        "interfaces": null,
12938        "enumValues": null,
12939        "possibleTypes": null
12940      },
12941      {
12942        "kind": "ENUM",
12943        "name": "BuildWorkflow",
12944        "description": null,
12945        "fields": null,
12946        "inputFields": null,
12947        "interfaces": null,
12948        "enumValues": [
12949          {
12950            "name": "GENERIC",
12951            "description": null,
12952            "isDeprecated": false,
12953            "deprecationReason": null
12954          },
12955          {
12956            "name": "MANAGED",
12957            "description": null,
12958            "isDeprecated": false,
12959            "deprecationReason": null
12960          }
12961        ],
12962        "possibleTypes": null
12963      },
12964      {
12965        "kind": "ENUM",
12966        "name": "CacheControlScope",
12967        "description": null,
12968        "fields": null,
12969        "inputFields": null,
12970        "interfaces": null,
12971        "enumValues": [
12972          {
12973            "name": "PRIVATE",
12974            "description": null,
12975            "isDeprecated": false,
12976            "deprecationReason": null
12977          },
12978          {
12979            "name": "PUBLIC",
12980            "description": null,
12981            "isDeprecated": false,
12982            "deprecationReason": null
12983          }
12984        ],
12985        "possibleTypes": null
12986      },
12987      {
12988        "kind": "OBJECT",
12989        "name": "Card",
12990        "description": null,
12991        "fields": [
12992          {
12993            "name": "brand",
12994            "description": null,
12995            "args": [],
12996            "type": {
12997              "kind": "SCALAR",
12998              "name": "String",
12999              "ofType": null
13000            },
13001            "isDeprecated": false,
13002            "deprecationReason": null
13003          },
13004          {
13005            "name": "cardHolder",
13006            "description": null,
13007            "args": [],
13008            "type": {
13009              "kind": "SCALAR",
13010              "name": "String",
13011              "ofType": null
13012            },
13013            "isDeprecated": false,
13014            "deprecationReason": null
13015          },
13016          {
13017            "name": "expMonth",
13018            "description": null,
13019            "args": [],
13020            "type": {
13021              "kind": "SCALAR",
13022              "name": "Int",
13023              "ofType": null
13024            },
13025            "isDeprecated": false,
13026            "deprecationReason": null
13027          },
13028          {
13029            "name": "expYear",
13030            "description": null,
13031            "args": [],
13032            "type": {
13033              "kind": "SCALAR",
13034              "name": "Int",
13035              "ofType": null
13036            },
13037            "isDeprecated": false,
13038            "deprecationReason": null
13039          },
13040          {
13041            "name": "last4",
13042            "description": null,
13043            "args": [],
13044            "type": {
13045              "kind": "SCALAR",
13046              "name": "String",
13047              "ofType": null
13048            },
13049            "isDeprecated": false,
13050            "deprecationReason": null
13051          }
13052        ],
13053        "inputFields": null,
13054        "interfaces": [],
13055        "enumValues": null,
13056        "possibleTypes": null
13057      },
13058      {
13059        "kind": "OBJECT",
13060        "name": "Charge",
13061        "description": null,
13062        "fields": [
13063          {
13064            "name": "amount",
13065            "description": null,
13066            "args": [],
13067            "type": {
13068              "kind": "SCALAR",
13069              "name": "Int",
13070              "ofType": null
13071            },
13072            "isDeprecated": false,
13073            "deprecationReason": null
13074          },
13075          {
13076            "name": "createdAt",
13077            "description": null,
13078            "args": [],
13079            "type": {
13080              "kind": "SCALAR",
13081              "name": "DateTime",
13082              "ofType": null
13083            },
13084            "isDeprecated": false,
13085            "deprecationReason": null
13086          },
13087          {
13088            "name": "id",
13089            "description": null,
13090            "args": [],
13091            "type": {
13092              "kind": "NON_NULL",
13093              "name": null,
13094              "ofType": {
13095                "kind": "SCALAR",
13096                "name": "ID",
13097                "ofType": null
13098              }
13099            },
13100            "isDeprecated": false,
13101            "deprecationReason": null
13102          },
13103          {
13104            "name": "invoiceId",
13105            "description": null,
13106            "args": [],
13107            "type": {
13108              "kind": "SCALAR",
13109              "name": "String",
13110              "ofType": null
13111            },
13112            "isDeprecated": false,
13113            "deprecationReason": null
13114          },
13115          {
13116            "name": "paid",
13117            "description": null,
13118            "args": [],
13119            "type": {
13120              "kind": "SCALAR",
13121              "name": "Boolean",
13122              "ofType": null
13123            },
13124            "isDeprecated": false,
13125            "deprecationReason": null
13126          },
13127          {
13128            "name": "receiptUrl",
13129            "description": null,
13130            "args": [],
13131            "type": {
13132              "kind": "SCALAR",
13133              "name": "String",
13134              "ofType": null
13135            },
13136            "isDeprecated": false,
13137            "deprecationReason": null
13138          },
13139          {
13140            "name": "wasRefunded",
13141            "description": null,
13142            "args": [],
13143            "type": {
13144              "kind": "SCALAR",
13145              "name": "Boolean",
13146              "ofType": null
13147            },
13148            "isDeprecated": false,
13149            "deprecationReason": null
13150          }
13151        ],
13152        "inputFields": null,
13153        "interfaces": [],
13154        "enumValues": null,
13155        "possibleTypes": null
13156      },
13157      {
13158        "kind": "OBJECT",
13159        "name": "ClientBuild",
13160        "description": "Represents a client build request",
13161        "fields": [
13162          {
13163            "name": "buildJobId",
13164            "description": null,
13165            "args": [],
13166            "type": {
13167              "kind": "SCALAR",
13168              "name": "String",
13169              "ofType": null
13170            },
13171            "isDeprecated": false,
13172            "deprecationReason": null
13173          },
13174          {
13175            "name": "id",
13176            "description": null,
13177            "args": [],
13178            "type": {
13179              "kind": "NON_NULL",
13180              "name": null,
13181              "ofType": {
13182                "kind": "SCALAR",
13183                "name": "ID",
13184                "ofType": null
13185              }
13186            },
13187            "isDeprecated": false,
13188            "deprecationReason": null
13189          },
13190          {
13191            "name": "manifestPlistUrl",
13192            "description": null,
13193            "args": [],
13194            "type": {
13195              "kind": "SCALAR",
13196              "name": "String",
13197              "ofType": null
13198            },
13199            "isDeprecated": false,
13200            "deprecationReason": null
13201          },
13202          {
13203            "name": "status",
13204            "description": null,
13205            "args": [],
13206            "type": {
13207              "kind": "SCALAR",
13208              "name": "String",
13209              "ofType": null
13210            },
13211            "isDeprecated": false,
13212            "deprecationReason": null
13213          },
13214          {
13215            "name": "userFacingErrorMessage",
13216            "description": null,
13217            "args": [],
13218            "type": {
13219              "kind": "SCALAR",
13220              "name": "String",
13221              "ofType": null
13222            },
13223            "isDeprecated": false,
13224            "deprecationReason": null
13225          },
13226          {
13227            "name": "userId",
13228            "description": null,
13229            "args": [],
13230            "type": {
13231              "kind": "SCALAR",
13232              "name": "String",
13233              "ofType": null
13234            },
13235            "isDeprecated": false,
13236            "deprecationReason": null
13237          }
13238        ],
13239        "inputFields": null,
13240        "interfaces": [],
13241        "enumValues": null,
13242        "possibleTypes": null
13243      },
13244      {
13245        "kind": "OBJECT",
13246        "name": "ClientBuildQuery",
13247        "description": null,
13248        "fields": [
13249          {
13250            "name": "byId",
13251            "description": null,
13252            "args": [
13253              {
13254                "name": "requestId",
13255                "description": null,
13256                "type": {
13257                  "kind": "NON_NULL",
13258                  "name": null,
13259                  "ofType": {
13260                    "kind": "SCALAR",
13261                    "name": "ID",
13262                    "ofType": null
13263                  }
13264                },
13265                "defaultValue": null,
13266                "isDeprecated": false,
13267                "deprecationReason": null
13268              }
13269            ],
13270            "type": {
13271              "kind": "NON_NULL",
13272              "name": null,
13273              "ofType": {
13274                "kind": "OBJECT",
13275                "name": "ClientBuild",
13276                "ofType": null
13277              }
13278            },
13279            "isDeprecated": false,
13280            "deprecationReason": null
13281          }
13282        ],
13283        "inputFields": null,
13284        "interfaces": [],
13285        "enumValues": null,
13286        "possibleTypes": null
13287      },
13288      {
13289        "kind": "OBJECT",
13290        "name": "CodeSigningInfo",
13291        "description": null,
13292        "fields": [
13293          {
13294            "name": "alg",
13295            "description": null,
13296            "args": [],
13297            "type": {
13298              "kind": "NON_NULL",
13299              "name": null,
13300              "ofType": {
13301                "kind": "SCALAR",
13302                "name": "String",
13303                "ofType": null
13304              }
13305            },
13306            "isDeprecated": false,
13307            "deprecationReason": null
13308          },
13309          {
13310            "name": "keyid",
13311            "description": null,
13312            "args": [],
13313            "type": {
13314              "kind": "NON_NULL",
13315              "name": null,
13316              "ofType": {
13317                "kind": "SCALAR",
13318                "name": "String",
13319                "ofType": null
13320              }
13321            },
13322            "isDeprecated": false,
13323            "deprecationReason": null
13324          },
13325          {
13326            "name": "sig",
13327            "description": null,
13328            "args": [],
13329            "type": {
13330              "kind": "NON_NULL",
13331              "name": null,
13332              "ofType": {
13333                "kind": "SCALAR",
13334                "name": "String",
13335                "ofType": null
13336              }
13337            },
13338            "isDeprecated": false,
13339            "deprecationReason": null
13340          }
13341        ],
13342        "inputFields": null,
13343        "interfaces": [],
13344        "enumValues": null,
13345        "possibleTypes": null
13346      },
13347      {
13348        "kind": "INPUT_OBJECT",
13349        "name": "CodeSigningInfoInput",
13350        "description": null,
13351        "fields": null,
13352        "inputFields": [
13353          {
13354            "name": "alg",
13355            "description": null,
13356            "type": {
13357              "kind": "NON_NULL",
13358              "name": null,
13359              "ofType": {
13360                "kind": "SCALAR",
13361                "name": "String",
13362                "ofType": null
13363              }
13364            },
13365            "defaultValue": null,
13366            "isDeprecated": false,
13367            "deprecationReason": null
13368          },
13369          {
13370            "name": "keyid",
13371            "description": null,
13372            "type": {
13373              "kind": "NON_NULL",
13374              "name": null,
13375              "ofType": {
13376                "kind": "SCALAR",
13377                "name": "String",
13378                "ofType": null
13379              }
13380            },
13381            "defaultValue": null,
13382            "isDeprecated": false,
13383            "deprecationReason": null
13384          },
13385          {
13386            "name": "sig",
13387            "description": null,
13388            "type": {
13389              "kind": "NON_NULL",
13390              "name": null,
13391              "ofType": {
13392                "kind": "SCALAR",
13393                "name": "String",
13394                "ofType": null
13395              }
13396            },
13397            "defaultValue": null,
13398            "isDeprecated": false,
13399            "deprecationReason": null
13400          }
13401        ],
13402        "interfaces": null,
13403        "enumValues": null,
13404        "possibleTypes": null
13405      },
13406      {
13407        "kind": "OBJECT",
13408        "name": "Concurrencies",
13409        "description": null,
13410        "fields": [
13411          {
13412            "name": "android",
13413            "description": null,
13414            "args": [],
13415            "type": {
13416              "kind": "NON_NULL",
13417              "name": null,
13418              "ofType": {
13419                "kind": "SCALAR",
13420                "name": "Int",
13421                "ofType": null
13422              }
13423            },
13424            "isDeprecated": false,
13425            "deprecationReason": null
13426          },
13427          {
13428            "name": "ios",
13429            "description": null,
13430            "args": [],
13431            "type": {
13432              "kind": "NON_NULL",
13433              "name": null,
13434              "ofType": {
13435                "kind": "SCALAR",
13436                "name": "Int",
13437                "ofType": null
13438              }
13439            },
13440            "isDeprecated": false,
13441            "deprecationReason": null
13442          },
13443          {
13444            "name": "total",
13445            "description": null,
13446            "args": [],
13447            "type": {
13448              "kind": "NON_NULL",
13449              "name": null,
13450              "ofType": {
13451                "kind": "SCALAR",
13452                "name": "Int",
13453                "ofType": null
13454              }
13455            },
13456            "isDeprecated": false,
13457            "deprecationReason": null
13458          }
13459        ],
13460        "inputFields": null,
13461        "interfaces": [],
13462        "enumValues": null,
13463        "possibleTypes": null
13464      },
13465      {
13466        "kind": "INPUT_OBJECT",
13467        "name": "CreateAccessTokenInput",
13468        "description": null,
13469        "fields": null,
13470        "inputFields": [
13471          {
13472            "name": "actorID",
13473            "description": null,
13474            "type": {
13475              "kind": "NON_NULL",
13476              "name": null,
13477              "ofType": {
13478                "kind": "SCALAR",
13479                "name": "ID",
13480                "ofType": null
13481              }
13482            },
13483            "defaultValue": null,
13484            "isDeprecated": false,
13485            "deprecationReason": null
13486          },
13487          {
13488            "name": "note",
13489            "description": null,
13490            "type": {
13491              "kind": "SCALAR",
13492              "name": "String",
13493              "ofType": null
13494            },
13495            "defaultValue": null,
13496            "isDeprecated": false,
13497            "deprecationReason": null
13498          }
13499        ],
13500        "interfaces": null,
13501        "enumValues": null,
13502        "possibleTypes": null
13503      },
13504      {
13505        "kind": "OBJECT",
13506        "name": "CreateAccessTokenResponse",
13507        "description": null,
13508        "fields": [
13509          {
13510            "name": "accessToken",
13511            "description": "AccessToken created",
13512            "args": [],
13513            "type": {
13514              "kind": "NON_NULL",
13515              "name": null,
13516              "ofType": {
13517                "kind": "OBJECT",
13518                "name": "AccessToken",
13519                "ofType": null
13520              }
13521            },
13522            "isDeprecated": false,
13523            "deprecationReason": null
13524          },
13525          {
13526            "name": "token",
13527            "description": "Full token string to be used for authentication",
13528            "args": [],
13529            "type": {
13530              "kind": "NON_NULL",
13531              "name": null,
13532              "ofType": {
13533                "kind": "SCALAR",
13534                "name": "String",
13535                "ofType": null
13536              }
13537            },
13538            "isDeprecated": false,
13539            "deprecationReason": null
13540          }
13541        ],
13542        "inputFields": null,
13543        "interfaces": [],
13544        "enumValues": null,
13545        "possibleTypes": null
13546      },
13547      {
13548        "kind": "INPUT_OBJECT",
13549        "name": "CreateAndroidSubmissionInput",
13550        "description": null,
13551        "fields": null,
13552        "inputFields": [
13553          {
13554            "name": "appId",
13555            "description": null,
13556            "type": {
13557              "kind": "NON_NULL",
13558              "name": null,
13559              "ofType": {
13560                "kind": "SCALAR",
13561                "name": "ID",
13562                "ofType": null
13563              }
13564            },
13565            "defaultValue": null,
13566            "isDeprecated": false,
13567            "deprecationReason": null
13568          },
13569          {
13570            "name": "archiveUrl",
13571            "description": null,
13572            "type": {
13573              "kind": "SCALAR",
13574              "name": "String",
13575              "ofType": null
13576            },
13577            "defaultValue": null,
13578            "isDeprecated": false,
13579            "deprecationReason": null
13580          },
13581          {
13582            "name": "config",
13583            "description": null,
13584            "type": {
13585              "kind": "NON_NULL",
13586              "name": null,
13587              "ofType": {
13588                "kind": "INPUT_OBJECT",
13589                "name": "AndroidSubmissionConfigInput",
13590                "ofType": null
13591              }
13592            },
13593            "defaultValue": null,
13594            "isDeprecated": false,
13595            "deprecationReason": null
13596          },
13597          {
13598            "name": "submittedBuildId",
13599            "description": null,
13600            "type": {
13601              "kind": "SCALAR",
13602              "name": "ID",
13603              "ofType": null
13604            },
13605            "defaultValue": null,
13606            "isDeprecated": false,
13607            "deprecationReason": null
13608          }
13609        ],
13610        "interfaces": null,
13611        "enumValues": null,
13612        "possibleTypes": null
13613      },
13614      {
13615        "kind": "OBJECT",
13616        "name": "CreateBuildResult",
13617        "description": null,
13618        "fields": [
13619          {
13620            "name": "build",
13621            "description": null,
13622            "args": [],
13623            "type": {
13624              "kind": "NON_NULL",
13625              "name": null,
13626              "ofType": {
13627                "kind": "OBJECT",
13628                "name": "Build",
13629                "ofType": null
13630              }
13631            },
13632            "isDeprecated": false,
13633            "deprecationReason": null
13634          },
13635          {
13636            "name": "deprecationInfo",
13637            "description": null,
13638            "args": [],
13639            "type": {
13640              "kind": "OBJECT",
13641              "name": "EASBuildDeprecationInfo",
13642              "ofType": null
13643            },
13644            "isDeprecated": false,
13645            "deprecationReason": null
13646          }
13647        ],
13648        "inputFields": null,
13649        "interfaces": [],
13650        "enumValues": null,
13651        "possibleTypes": null
13652      },
13653      {
13654        "kind": "INPUT_OBJECT",
13655        "name": "CreateEnvironmentSecretInput",
13656        "description": null,
13657        "fields": null,
13658        "inputFields": [
13659          {
13660            "name": "name",
13661            "description": null,
13662            "type": {
13663              "kind": "NON_NULL",
13664              "name": null,
13665              "ofType": {
13666                "kind": "SCALAR",
13667                "name": "String",
13668                "ofType": null
13669              }
13670            },
13671            "defaultValue": null,
13672            "isDeprecated": false,
13673            "deprecationReason": null
13674          },
13675          {
13676            "name": "value",
13677            "description": null,
13678            "type": {
13679              "kind": "NON_NULL",
13680              "name": null,
13681              "ofType": {
13682                "kind": "SCALAR",
13683                "name": "String",
13684                "ofType": null
13685              }
13686            },
13687            "defaultValue": null,
13688            "isDeprecated": false,
13689            "deprecationReason": null
13690          }
13691        ],
13692        "interfaces": null,
13693        "enumValues": null,
13694        "possibleTypes": null
13695      },
13696      {
13697        "kind": "INPUT_OBJECT",
13698        "name": "CreateIosSubmissionInput",
13699        "description": null,
13700        "fields": null,
13701        "inputFields": [
13702          {
13703            "name": "appId",
13704            "description": null,
13705            "type": {
13706              "kind": "NON_NULL",
13707              "name": null,
13708              "ofType": {
13709                "kind": "SCALAR",
13710                "name": "ID",
13711                "ofType": null
13712              }
13713            },
13714            "defaultValue": null,
13715            "isDeprecated": false,
13716            "deprecationReason": null
13717          },
13718          {
13719            "name": "archiveUrl",
13720            "description": null,
13721            "type": {
13722              "kind": "SCALAR",
13723              "name": "String",
13724              "ofType": null
13725            },
13726            "defaultValue": null,
13727            "isDeprecated": false,
13728            "deprecationReason": null
13729          },
13730          {
13731            "name": "config",
13732            "description": null,
13733            "type": {
13734              "kind": "NON_NULL",
13735              "name": null,
13736              "ofType": {
13737                "kind": "INPUT_OBJECT",
13738                "name": "IosSubmissionConfigInput",
13739                "ofType": null
13740              }
13741            },
13742            "defaultValue": null,
13743            "isDeprecated": false,
13744            "deprecationReason": null
13745          },
13746          {
13747            "name": "submittedBuildId",
13748            "description": null,
13749            "type": {
13750              "kind": "SCALAR",
13751              "name": "ID",
13752              "ofType": null
13753            },
13754            "defaultValue": null,
13755            "isDeprecated": false,
13756            "deprecationReason": null
13757          }
13758        ],
13759        "interfaces": null,
13760        "enumValues": null,
13761        "possibleTypes": null
13762      },
13763      {
13764        "kind": "OBJECT",
13765        "name": "CreateSubmissionResult",
13766        "description": null,
13767        "fields": [
13768          {
13769            "name": "submission",
13770            "description": "Created submission",
13771            "args": [],
13772            "type": {
13773              "kind": "NON_NULL",
13774              "name": null,
13775              "ofType": {
13776                "kind": "OBJECT",
13777                "name": "Submission",
13778                "ofType": null
13779              }
13780            },
13781            "isDeprecated": false,
13782            "deprecationReason": null
13783          }
13784        ],
13785        "inputFields": null,
13786        "interfaces": [],
13787        "enumValues": null,
13788        "possibleTypes": null
13789      },
13790      {
13791        "kind": "SCALAR",
13792        "name": "DateTime",
13793        "description": "Date custom scalar type",
13794        "fields": null,
13795        "inputFields": null,
13796        "interfaces": null,
13797        "enumValues": null,
13798        "possibleTypes": null
13799      },
13800      {
13801        "kind": "OBJECT",
13802        "name": "DeleteAccessTokenResult",
13803        "description": null,
13804        "fields": [
13805          {
13806            "name": "id",
13807            "description": null,
13808            "args": [],
13809            "type": {
13810              "kind": "NON_NULL",
13811              "name": null,
13812              "ofType": {
13813                "kind": "SCALAR",
13814                "name": "ID",
13815                "ofType": null
13816              }
13817            },
13818            "isDeprecated": false,
13819            "deprecationReason": null
13820          }
13821        ],
13822        "inputFields": null,
13823        "interfaces": [],
13824        "enumValues": null,
13825        "possibleTypes": null
13826      },
13827      {
13828        "kind": "OBJECT",
13829        "name": "DeleteAccountResult",
13830        "description": null,
13831        "fields": [
13832          {
13833            "name": "id",
13834            "description": null,
13835            "args": [],
13836            "type": {
13837              "kind": "NON_NULL",
13838              "name": null,
13839              "ofType": {
13840                "kind": "SCALAR",
13841                "name": "ID",
13842                "ofType": null
13843              }
13844            },
13845            "isDeprecated": false,
13846            "deprecationReason": null
13847          }
13848        ],
13849        "inputFields": null,
13850        "interfaces": [],
13851        "enumValues": null,
13852        "possibleTypes": null
13853      },
13854      {
13855        "kind": "OBJECT",
13856        "name": "DeleteAndroidKeystoreResult",
13857        "description": null,
13858        "fields": [
13859          {
13860            "name": "id",
13861            "description": null,
13862            "args": [],
13863            "type": {
13864              "kind": "NON_NULL",
13865              "name": null,
13866              "ofType": {
13867                "kind": "SCALAR",
13868                "name": "ID",
13869                "ofType": null
13870              }
13871            },
13872            "isDeprecated": false,
13873            "deprecationReason": null
13874          }
13875        ],
13876        "inputFields": null,
13877        "interfaces": [],
13878        "enumValues": null,
13879        "possibleTypes": null
13880      },
13881      {
13882        "kind": "OBJECT",
13883        "name": "DeleteAppleDeviceResult",
13884        "description": null,
13885        "fields": [
13886          {
13887            "name": "id",
13888            "description": null,
13889            "args": [],
13890            "type": {
13891              "kind": "NON_NULL",
13892              "name": null,
13893              "ofType": {
13894                "kind": "SCALAR",
13895                "name": "ID",
13896                "ofType": null
13897              }
13898            },
13899            "isDeprecated": false,
13900            "deprecationReason": null
13901          }
13902        ],
13903        "inputFields": null,
13904        "interfaces": [],
13905        "enumValues": null,
13906        "possibleTypes": null
13907      },
13908      {
13909        "kind": "OBJECT",
13910        "name": "DeleteAppleDistributionCertificateResult",
13911        "description": null,
13912        "fields": [
13913          {
13914            "name": "id",
13915            "description": null,
13916            "args": [],
13917            "type": {
13918              "kind": "NON_NULL",
13919              "name": null,
13920              "ofType": {
13921                "kind": "SCALAR",
13922                "name": "ID",
13923                "ofType": null
13924              }
13925            },
13926            "isDeprecated": false,
13927            "deprecationReason": null
13928          }
13929        ],
13930        "inputFields": null,
13931        "interfaces": [],
13932        "enumValues": null,
13933        "possibleTypes": null
13934      },
13935      {
13936        "kind": "OBJECT",
13937        "name": "DeleteAppleProvisioningProfileResult",
13938        "description": null,
13939        "fields": [
13940          {
13941            "name": "id",
13942            "description": null,
13943            "args": [],
13944            "type": {
13945              "kind": "NON_NULL",
13946              "name": null,
13947              "ofType": {
13948                "kind": "SCALAR",
13949                "name": "ID",
13950                "ofType": null
13951              }
13952            },
13953            "isDeprecated": false,
13954            "deprecationReason": null
13955          }
13956        ],
13957        "inputFields": null,
13958        "interfaces": [],
13959        "enumValues": null,
13960        "possibleTypes": null
13961      },
13962      {
13963        "kind": "OBJECT",
13964        "name": "DeleteEnvironmentSecretResult",
13965        "description": null,
13966        "fields": [
13967          {
13968            "name": "id",
13969            "description": null,
13970            "args": [],
13971            "type": {
13972              "kind": "NON_NULL",
13973              "name": null,
13974              "ofType": {
13975                "kind": "SCALAR",
13976                "name": "ID",
13977                "ofType": null
13978              }
13979            },
13980            "isDeprecated": false,
13981            "deprecationReason": null
13982          }
13983        ],
13984        "inputFields": null,
13985        "interfaces": [],
13986        "enumValues": null,
13987        "possibleTypes": null
13988      },
13989      {
13990        "kind": "OBJECT",
13991        "name": "DeleteGoogleServiceAccountKeyResult",
13992        "description": null,
13993        "fields": [
13994          {
13995            "name": "id",
13996            "description": null,
13997            "args": [],
13998            "type": {
13999              "kind": "NON_NULL",
14000              "name": null,
14001              "ofType": {
14002                "kind": "SCALAR",
14003                "name": "ID",
14004                "ofType": null
14005              }
14006            },
14007            "isDeprecated": false,
14008            "deprecationReason": null
14009          }
14010        ],
14011        "inputFields": null,
14012        "interfaces": [],
14013        "enumValues": null,
14014        "possibleTypes": null
14015      },
14016      {
14017        "kind": "OBJECT",
14018        "name": "DeleteRobotResult",
14019        "description": null,
14020        "fields": [
14021          {
14022            "name": "id",
14023            "description": null,
14024            "args": [],
14025            "type": {
14026              "kind": "NON_NULL",
14027              "name": null,
14028              "ofType": {
14029                "kind": "SCALAR",
14030                "name": "ID",
14031                "ofType": null
14032              }
14033            },
14034            "isDeprecated": false,
14035            "deprecationReason": null
14036          }
14037        ],
14038        "inputFields": null,
14039        "interfaces": [],
14040        "enumValues": null,
14041        "possibleTypes": null
14042      },
14043      {
14044        "kind": "OBJECT",
14045        "name": "DeleteUpdateBranchResult",
14046        "description": null,
14047        "fields": [
14048          {
14049            "name": "id",
14050            "description": null,
14051            "args": [],
14052            "type": {
14053              "kind": "NON_NULL",
14054              "name": null,
14055              "ofType": {
14056                "kind": "SCALAR",
14057                "name": "ID",
14058                "ofType": null
14059              }
14060            },
14061            "isDeprecated": false,
14062            "deprecationReason": null
14063          }
14064        ],
14065        "inputFields": null,
14066        "interfaces": [],
14067        "enumValues": null,
14068        "possibleTypes": null
14069      },
14070      {
14071        "kind": "OBJECT",
14072        "name": "DeleteUpdateChannelResult",
14073        "description": null,
14074        "fields": [
14075          {
14076            "name": "id",
14077            "description": null,
14078            "args": [],
14079            "type": {
14080              "kind": "NON_NULL",
14081              "name": null,
14082              "ofType": {
14083                "kind": "SCALAR",
14084                "name": "ID",
14085                "ofType": null
14086              }
14087            },
14088            "isDeprecated": false,
14089            "deprecationReason": null
14090          }
14091        ],
14092        "inputFields": null,
14093        "interfaces": [],
14094        "enumValues": null,
14095        "possibleTypes": null
14096      },
14097      {
14098        "kind": "OBJECT",
14099        "name": "DeleteUpdateGroupResult",
14100        "description": null,
14101        "fields": [
14102          {
14103            "name": "group",
14104            "description": null,
14105            "args": [],
14106            "type": {
14107              "kind": "NON_NULL",
14108              "name": null,
14109              "ofType": {
14110                "kind": "SCALAR",
14111                "name": "ID",
14112                "ofType": null
14113              }
14114            },
14115            "isDeprecated": false,
14116            "deprecationReason": null
14117          }
14118        ],
14119        "inputFields": null,
14120        "interfaces": [],
14121        "enumValues": null,
14122        "possibleTypes": null
14123      },
14124      {
14125        "kind": "OBJECT",
14126        "name": "DeleteWebhookResult",
14127        "description": null,
14128        "fields": [
14129          {
14130            "name": "id",
14131            "description": null,
14132            "args": [],
14133            "type": {
14134              "kind": "NON_NULL",
14135              "name": null,
14136              "ofType": {
14137                "kind": "SCALAR",
14138                "name": "ID",
14139                "ofType": null
14140              }
14141            },
14142            "isDeprecated": false,
14143            "deprecationReason": null
14144          }
14145        ],
14146        "inputFields": null,
14147        "interfaces": [],
14148        "enumValues": null,
14149        "possibleTypes": null
14150      },
14151      {
14152        "kind": "OBJECT",
14153        "name": "Deployment",
14154        "description": "Represents a Deployment - a set of Builds with the same Runtime Version and Channel",
14155        "fields": [
14156          {
14157            "name": "channel",
14158            "description": null,
14159            "args": [],
14160            "type": {
14161              "kind": "OBJECT",
14162              "name": "UpdateChannel",
14163              "ofType": null
14164            },
14165            "isDeprecated": false,
14166            "deprecationReason": null
14167          },
14168          {
14169            "name": "channelName",
14170            "description": "The name of this deployment's associated channel. It is specified separately from the `channel`\nfield to allow specifying a deployment before an EAS Update channel has been created.",
14171            "args": [],
14172            "type": {
14173              "kind": "NON_NULL",
14174              "name": null,
14175              "ofType": {
14176                "kind": "SCALAR",
14177                "name": "String",
14178                "ofType": null
14179              }
14180            },
14181            "isDeprecated": false,
14182            "deprecationReason": null
14183          },
14184          {
14185            "name": "id",
14186            "description": null,
14187            "args": [],
14188            "type": {
14189              "kind": "NON_NULL",
14190              "name": null,
14191              "ofType": {
14192                "kind": "SCALAR",
14193                "name": "ID",
14194                "ofType": null
14195              }
14196            },
14197            "isDeprecated": false,
14198            "deprecationReason": null
14199          },
14200          {
14201            "name": "mostRecentlyUpdatedAt",
14202            "description": null,
14203            "args": [],
14204            "type": {
14205              "kind": "NON_NULL",
14206              "name": null,
14207              "ofType": {
14208                "kind": "SCALAR",
14209                "name": "DateTime",
14210                "ofType": null
14211              }
14212            },
14213            "isDeprecated": false,
14214            "deprecationReason": null
14215          },
14216          {
14217            "name": "recentBuilds",
14218            "description": null,
14219            "args": [],
14220            "type": {
14221              "kind": "NON_NULL",
14222              "name": null,
14223              "ofType": {
14224                "kind": "LIST",
14225                "name": null,
14226                "ofType": {
14227                  "kind": "NON_NULL",
14228                  "name": null,
14229                  "ofType": {
14230                    "kind": "OBJECT",
14231                    "name": "Build",
14232                    "ofType": null
14233                  }
14234                }
14235              }
14236            },
14237            "isDeprecated": false,
14238            "deprecationReason": null
14239          },
14240          {
14241            "name": "runtimeVersion",
14242            "description": null,
14243            "args": [],
14244            "type": {
14245              "kind": "NON_NULL",
14246              "name": null,
14247              "ofType": {
14248                "kind": "SCALAR",
14249                "name": "String",
14250                "ofType": null
14251              }
14252            },
14253            "isDeprecated": false,
14254            "deprecationReason": null
14255          }
14256        ],
14257        "inputFields": null,
14258        "interfaces": [],
14259        "enumValues": null,
14260        "possibleTypes": null
14261      },
14262      {
14263        "kind": "INPUT_OBJECT",
14264        "name": "DeploymentOptions",
14265        "description": null,
14266        "fields": null,
14267        "inputFields": [
14268          {
14269            "name": "buildListMaxSize",
14270            "description": "Max number of associated builds to return",
14271            "type": {
14272              "kind": "SCALAR",
14273              "name": "Int",
14274              "ofType": null
14275            },
14276            "defaultValue": null,
14277            "isDeprecated": false,
14278            "deprecationReason": null
14279          }
14280        ],
14281        "interfaces": null,
14282        "enumValues": null,
14283        "possibleTypes": null
14284      },
14285      {
14286        "kind": "ENUM",
14287        "name": "DistributionType",
14288        "description": null,
14289        "fields": null,
14290        "inputFields": null,
14291        "interfaces": null,
14292        "enumValues": [
14293          {
14294            "name": "INTERNAL",
14295            "description": null,
14296            "isDeprecated": false,
14297            "deprecationReason": null
14298          },
14299          {
14300            "name": "SIMULATOR",
14301            "description": null,
14302            "isDeprecated": false,
14303            "deprecationReason": null
14304          },
14305          {
14306            "name": "STORE",
14307            "description": null,
14308            "isDeprecated": false,
14309            "deprecationReason": null
14310          }
14311        ],
14312        "possibleTypes": null
14313      },
14314      {
14315        "kind": "OBJECT",
14316        "name": "EASBuildDeprecationInfo",
14317        "description": null,
14318        "fields": [
14319          {
14320            "name": "message",
14321            "description": null,
14322            "args": [],
14323            "type": {
14324              "kind": "NON_NULL",
14325              "name": null,
14326              "ofType": {
14327                "kind": "SCALAR",
14328                "name": "String",
14329                "ofType": null
14330              }
14331            },
14332            "isDeprecated": false,
14333            "deprecationReason": null
14334          },
14335          {
14336            "name": "type",
14337            "description": null,
14338            "args": [],
14339            "type": {
14340              "kind": "NON_NULL",
14341              "name": null,
14342              "ofType": {
14343                "kind": "ENUM",
14344                "name": "EASBuildDeprecationInfoType",
14345                "ofType": null
14346              }
14347            },
14348            "isDeprecated": false,
14349            "deprecationReason": null
14350          }
14351        ],
14352        "inputFields": null,
14353        "interfaces": [],
14354        "enumValues": null,
14355        "possibleTypes": null
14356      },
14357      {
14358        "kind": "ENUM",
14359        "name": "EASBuildDeprecationInfoType",
14360        "description": null,
14361        "fields": null,
14362        "inputFields": null,
14363        "interfaces": null,
14364        "enumValues": [
14365          {
14366            "name": "INTERNAL",
14367            "description": null,
14368            "isDeprecated": false,
14369            "deprecationReason": null
14370          },
14371          {
14372            "name": "USER_FACING",
14373            "description": null,
14374            "isDeprecated": false,
14375            "deprecationReason": null
14376          }
14377        ],
14378        "possibleTypes": null
14379      },
14380      {
14381        "kind": "ENUM",
14382        "name": "EASServiceMetric",
14383        "description": null,
14384        "fields": null,
14385        "inputFields": null,
14386        "interfaces": null,
14387        "enumValues": [
14388          {
14389            "name": "ASSETS_REQUESTS",
14390            "description": null,
14391            "isDeprecated": false,
14392            "deprecationReason": null
14393          },
14394          {
14395            "name": "BANDWIDTH_USAGE",
14396            "description": null,
14397            "isDeprecated": false,
14398            "deprecationReason": null
14399          },
14400          {
14401            "name": "MANIFEST_REQUESTS",
14402            "description": null,
14403            "isDeprecated": false,
14404            "deprecationReason": null
14405          },
14406          {
14407            "name": "UNIQUE_USERS",
14408            "description": null,
14409            "isDeprecated": false,
14410            "deprecationReason": null
14411          }
14412        ],
14413        "possibleTypes": null
14414      },
14415      {
14416        "kind": "INPUT_OBJECT",
14417        "name": "EditUpdateBranchInput",
14418        "description": null,
14419        "fields": null,
14420        "inputFields": [
14421          {
14422            "name": "appId",
14423            "description": null,
14424            "type": {
14425              "kind": "SCALAR",
14426              "name": "ID",
14427              "ofType": null
14428            },
14429            "defaultValue": null,
14430            "isDeprecated": false,
14431            "deprecationReason": null
14432          },
14433          {
14434            "name": "id",
14435            "description": null,
14436            "type": {
14437              "kind": "SCALAR",
14438              "name": "ID",
14439              "ofType": null
14440            },
14441            "defaultValue": null,
14442            "isDeprecated": false,
14443            "deprecationReason": null
14444          },
14445          {
14446            "name": "name",
14447            "description": null,
14448            "type": {
14449              "kind": "SCALAR",
14450              "name": "String",
14451              "ofType": null
14452            },
14453            "defaultValue": null,
14454            "isDeprecated": false,
14455            "deprecationReason": null
14456          },
14457          {
14458            "name": "newName",
14459            "description": null,
14460            "type": {
14461              "kind": "NON_NULL",
14462              "name": null,
14463              "ofType": {
14464                "kind": "SCALAR",
14465                "name": "String",
14466                "ofType": null
14467              }
14468            },
14469            "defaultValue": null,
14470            "isDeprecated": false,
14471            "deprecationReason": null
14472          }
14473        ],
14474        "interfaces": null,
14475        "enumValues": null,
14476        "possibleTypes": null
14477      },
14478      {
14479        "kind": "OBJECT",
14480        "name": "EmailSubscriptionMutation",
14481        "description": null,
14482        "fields": [
14483          {
14484            "name": "addUser",
14485            "description": null,
14486            "args": [
14487              {
14488                "name": "addUserInput",
14489                "description": null,
14490                "type": {
14491                  "kind": "NON_NULL",
14492                  "name": null,
14493                  "ofType": {
14494                    "kind": "INPUT_OBJECT",
14495                    "name": "AddUserInput",
14496                    "ofType": null
14497                  }
14498                },
14499                "defaultValue": null,
14500                "isDeprecated": false,
14501                "deprecationReason": null
14502              }
14503            ],
14504            "type": {
14505              "kind": "NON_NULL",
14506              "name": null,
14507              "ofType": {
14508                "kind": "OBJECT",
14509                "name": "AddUserPayload",
14510                "ofType": null
14511              }
14512            },
14513            "isDeprecated": false,
14514            "deprecationReason": null
14515          }
14516        ],
14517        "inputFields": null,
14518        "interfaces": [],
14519        "enumValues": null,
14520        "possibleTypes": null
14521      },
14522      {
14523        "kind": "OBJECT",
14524        "name": "EnvironmentSecret",
14525        "description": null,
14526        "fields": [
14527          {
14528            "name": "createdAt",
14529            "description": null,
14530            "args": [],
14531            "type": {
14532              "kind": "NON_NULL",
14533              "name": null,
14534              "ofType": {
14535                "kind": "SCALAR",
14536                "name": "DateTime",
14537                "ofType": null
14538              }
14539            },
14540            "isDeprecated": false,
14541            "deprecationReason": null
14542          },
14543          {
14544            "name": "id",
14545            "description": null,
14546            "args": [],
14547            "type": {
14548              "kind": "NON_NULL",
14549              "name": null,
14550              "ofType": {
14551                "kind": "SCALAR",
14552                "name": "ID",
14553                "ofType": null
14554              }
14555            },
14556            "isDeprecated": false,
14557            "deprecationReason": null
14558          },
14559          {
14560            "name": "name",
14561            "description": null,
14562            "args": [],
14563            "type": {
14564              "kind": "NON_NULL",
14565              "name": null,
14566              "ofType": {
14567                "kind": "SCALAR",
14568                "name": "String",
14569                "ofType": null
14570              }
14571            },
14572            "isDeprecated": false,
14573            "deprecationReason": null
14574          },
14575          {
14576            "name": "updatedAt",
14577            "description": null,
14578            "args": [],
14579            "type": {
14580              "kind": "NON_NULL",
14581              "name": null,
14582              "ofType": {
14583                "kind": "SCALAR",
14584                "name": "DateTime",
14585                "ofType": null
14586              }
14587            },
14588            "isDeprecated": false,
14589            "deprecationReason": null
14590          }
14591        ],
14592        "inputFields": null,
14593        "interfaces": [],
14594        "enumValues": null,
14595        "possibleTypes": null
14596      },
14597      {
14598        "kind": "OBJECT",
14599        "name": "EnvironmentSecretMutation",
14600        "description": null,
14601        "fields": [
14602          {
14603            "name": "createEnvironmentSecretForAccount",
14604            "description": "Create an environment secret for an Account",
14605            "args": [
14606              {
14607                "name": "accountId",
14608                "description": null,
14609                "type": {
14610                  "kind": "NON_NULL",
14611                  "name": null,
14612                  "ofType": {
14613                    "kind": "SCALAR",
14614                    "name": "String",
14615                    "ofType": null
14616                  }
14617                },
14618                "defaultValue": null,
14619                "isDeprecated": false,
14620                "deprecationReason": null
14621              },
14622              {
14623                "name": "environmentSecretData",
14624                "description": null,
14625                "type": {
14626                  "kind": "NON_NULL",
14627                  "name": null,
14628                  "ofType": {
14629                    "kind": "INPUT_OBJECT",
14630                    "name": "CreateEnvironmentSecretInput",
14631                    "ofType": null
14632                  }
14633                },
14634                "defaultValue": null,
14635                "isDeprecated": false,
14636                "deprecationReason": null
14637              }
14638            ],
14639            "type": {
14640              "kind": "NON_NULL",
14641              "name": null,
14642              "ofType": {
14643                "kind": "OBJECT",
14644                "name": "EnvironmentSecret",
14645                "ofType": null
14646              }
14647            },
14648            "isDeprecated": false,
14649            "deprecationReason": null
14650          },
14651          {
14652            "name": "createEnvironmentSecretForApp",
14653            "description": "Create an environment secret for an App",
14654            "args": [
14655              {
14656                "name": "appId",
14657                "description": null,
14658                "type": {
14659                  "kind": "NON_NULL",
14660                  "name": null,
14661                  "ofType": {
14662                    "kind": "SCALAR",
14663                    "name": "String",
14664                    "ofType": null
14665                  }
14666                },
14667                "defaultValue": null,
14668                "isDeprecated": false,
14669                "deprecationReason": null
14670              },
14671              {
14672                "name": "environmentSecretData",
14673                "description": null,
14674                "type": {
14675                  "kind": "NON_NULL",
14676                  "name": null,
14677                  "ofType": {
14678                    "kind": "INPUT_OBJECT",
14679                    "name": "CreateEnvironmentSecretInput",
14680                    "ofType": null
14681                  }
14682                },
14683                "defaultValue": null,
14684                "isDeprecated": false,
14685                "deprecationReason": null
14686              }
14687            ],
14688            "type": {
14689              "kind": "NON_NULL",
14690              "name": null,
14691              "ofType": {
14692                "kind": "OBJECT",
14693                "name": "EnvironmentSecret",
14694                "ofType": null
14695              }
14696            },
14697            "isDeprecated": false,
14698            "deprecationReason": null
14699          },
14700          {
14701            "name": "deleteEnvironmentSecret",
14702            "description": "Delete an environment secret",
14703            "args": [
14704              {
14705                "name": "id",
14706                "description": null,
14707                "type": {
14708                  "kind": "NON_NULL",
14709                  "name": null,
14710                  "ofType": {
14711                    "kind": "SCALAR",
14712                    "name": "String",
14713                    "ofType": null
14714                  }
14715                },
14716                "defaultValue": null,
14717                "isDeprecated": false,
14718                "deprecationReason": null
14719              }
14720            ],
14721            "type": {
14722              "kind": "NON_NULL",
14723              "name": null,
14724              "ofType": {
14725                "kind": "OBJECT",
14726                "name": "DeleteEnvironmentSecretResult",
14727                "ofType": null
14728              }
14729            },
14730            "isDeprecated": false,
14731            "deprecationReason": null
14732          }
14733        ],
14734        "inputFields": null,
14735        "interfaces": [],
14736        "enumValues": null,
14737        "possibleTypes": null
14738      },
14739      {
14740        "kind": "OBJECT",
14741        "name": "ExperimentationQuery",
14742        "description": null,
14743        "fields": [
14744          {
14745            "name": "deviceConfig",
14746            "description": "Get device experimentation config",
14747            "args": [],
14748            "type": {
14749              "kind": "NON_NULL",
14750              "name": null,
14751              "ofType": {
14752                "kind": "SCALAR",
14753                "name": "JSONObject",
14754                "ofType": null
14755              }
14756            },
14757            "isDeprecated": false,
14758            "deprecationReason": null
14759          },
14760          {
14761            "name": "deviceExperimentationUnit",
14762            "description": "Get experimentation unit to use for device experiments. In this case, it is the IP address.",
14763            "args": [],
14764            "type": {
14765              "kind": "NON_NULL",
14766              "name": null,
14767              "ofType": {
14768                "kind": "SCALAR",
14769                "name": "ID",
14770                "ofType": null
14771              }
14772            },
14773            "isDeprecated": false,
14774            "deprecationReason": null
14775          },
14776          {
14777            "name": "userConfig",
14778            "description": "Get user experimentation config",
14779            "args": [],
14780            "type": {
14781              "kind": "NON_NULL",
14782              "name": null,
14783              "ofType": {
14784                "kind": "SCALAR",
14785                "name": "JSONObject",
14786                "ofType": null
14787              }
14788            },
14789            "isDeprecated": false,
14790            "deprecationReason": null
14791          }
14792        ],
14793        "inputFields": null,
14794        "interfaces": [],
14795        "enumValues": null,
14796        "possibleTypes": null
14797      },
14798      {
14799        "kind": "UNION",
14800        "name": "FcmSnippet",
14801        "description": null,
14802        "fields": null,
14803        "inputFields": null,
14804        "interfaces": null,
14805        "enumValues": null,
14806        "possibleTypes": [
14807          {
14808            "kind": "OBJECT",
14809            "name": "FcmSnippetLegacy",
14810            "ofType": null
14811          },
14812          {
14813            "kind": "OBJECT",
14814            "name": "FcmSnippetV1",
14815            "ofType": null
14816          }
14817        ]
14818      },
14819      {
14820        "kind": "OBJECT",
14821        "name": "FcmSnippetLegacy",
14822        "description": null,
14823        "fields": [
14824          {
14825            "name": "firstFourCharacters",
14826            "description": null,
14827            "args": [],
14828            "type": {
14829              "kind": "NON_NULL",
14830              "name": null,
14831              "ofType": {
14832                "kind": "SCALAR",
14833                "name": "String",
14834                "ofType": null
14835              }
14836            },
14837            "isDeprecated": false,
14838            "deprecationReason": null
14839          },
14840          {
14841            "name": "lastFourCharacters",
14842            "description": null,
14843            "args": [],
14844            "type": {
14845              "kind": "NON_NULL",
14846              "name": null,
14847              "ofType": {
14848                "kind": "SCALAR",
14849                "name": "String",
14850                "ofType": null
14851              }
14852            },
14853            "isDeprecated": false,
14854            "deprecationReason": null
14855          }
14856        ],
14857        "inputFields": null,
14858        "interfaces": [],
14859        "enumValues": null,
14860        "possibleTypes": null
14861      },
14862      {
14863        "kind": "OBJECT",
14864        "name": "FcmSnippetV1",
14865        "description": null,
14866        "fields": [
14867          {
14868            "name": "clientId",
14869            "description": null,
14870            "args": [],
14871            "type": {
14872              "kind": "SCALAR",
14873              "name": "String",
14874              "ofType": null
14875            },
14876            "isDeprecated": false,
14877            "deprecationReason": null
14878          },
14879          {
14880            "name": "keyId",
14881            "description": null,
14882            "args": [],
14883            "type": {
14884              "kind": "NON_NULL",
14885              "name": null,
14886              "ofType": {
14887                "kind": "SCALAR",
14888                "name": "String",
14889                "ofType": null
14890              }
14891            },
14892            "isDeprecated": false,
14893            "deprecationReason": null
14894          },
14895          {
14896            "name": "projectId",
14897            "description": null,
14898            "args": [],
14899            "type": {
14900              "kind": "NON_NULL",
14901              "name": null,
14902              "ofType": {
14903                "kind": "SCALAR",
14904                "name": "String",
14905                "ofType": null
14906              }
14907            },
14908            "isDeprecated": false,
14909            "deprecationReason": null
14910          },
14911          {
14912            "name": "serviceAccountEmail",
14913            "description": null,
14914            "args": [],
14915            "type": {
14916              "kind": "NON_NULL",
14917              "name": null,
14918              "ofType": {
14919                "kind": "SCALAR",
14920                "name": "String",
14921                "ofType": null
14922              }
14923            },
14924            "isDeprecated": false,
14925            "deprecationReason": null
14926          }
14927        ],
14928        "inputFields": null,
14929        "interfaces": [],
14930        "enumValues": null,
14931        "possibleTypes": null
14932      },
14933      {
14934        "kind": "ENUM",
14935        "name": "Feature",
14936        "description": null,
14937        "fields": null,
14938        "inputFields": null,
14939        "interfaces": null,
14940        "enumValues": [
14941          {
14942            "name": "BUILDS",
14943            "description": "Priority Builds",
14944            "isDeprecated": false,
14945            "deprecationReason": null
14946          },
14947          {
14948            "name": "OPEN_SOURCE",
14949            "description": "Funds support for open source development",
14950            "isDeprecated": false,
14951            "deprecationReason": null
14952          },
14953          {
14954            "name": "SUPPORT",
14955            "description": "Top Tier Support",
14956            "isDeprecated": false,
14957            "deprecationReason": null
14958          },
14959          {
14960            "name": "TEAMS",
14961            "description": "Share access to projects",
14962            "isDeprecated": false,
14963            "deprecationReason": null
14964          }
14965        ],
14966        "possibleTypes": null
14967      },
14968      {
14969        "kind": "SCALAR",
14970        "name": "Float",
14971        "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).",
14972        "fields": null,
14973        "inputFields": null,
14974        "interfaces": null,
14975        "enumValues": null,
14976        "possibleTypes": null
14977      },
14978      {
14979        "kind": "OBJECT",
14980        "name": "GetSignedAssetUploadSpecificationsResult",
14981        "description": null,
14982        "fields": [
14983          {
14984            "name": "specifications",
14985            "description": null,
14986            "args": [],
14987            "type": {
14988              "kind": "NON_NULL",
14989              "name": null,
14990              "ofType": {
14991                "kind": "LIST",
14992                "name": null,
14993                "ofType": {
14994                  "kind": "NON_NULL",
14995                  "name": null,
14996                  "ofType": {
14997                    "kind": "SCALAR",
14998                    "name": "String",
14999                    "ofType": null
15000                  }
15001                }
15002              }
15003            },
15004            "isDeprecated": false,
15005            "deprecationReason": null
15006          }
15007        ],
15008        "inputFields": null,
15009        "interfaces": [],
15010        "enumValues": null,
15011        "possibleTypes": null
15012      },
15013      {
15014        "kind": "OBJECT",
15015        "name": "GoogleServiceAccountKey",
15016        "description": null,
15017        "fields": [
15018          {
15019            "name": "account",
15020            "description": null,
15021            "args": [],
15022            "type": {
15023              "kind": "NON_NULL",
15024              "name": null,
15025              "ofType": {
15026                "kind": "OBJECT",
15027                "name": "Account",
15028                "ofType": null
15029              }
15030            },
15031            "isDeprecated": false,
15032            "deprecationReason": null
15033          },
15034          {
15035            "name": "clientEmail",
15036            "description": null,
15037            "args": [],
15038            "type": {
15039              "kind": "NON_NULL",
15040              "name": null,
15041              "ofType": {
15042                "kind": "SCALAR",
15043                "name": "String",
15044                "ofType": null
15045              }
15046            },
15047            "isDeprecated": false,
15048            "deprecationReason": null
15049          },
15050          {
15051            "name": "clientIdentifier",
15052            "description": null,
15053            "args": [],
15054            "type": {
15055              "kind": "NON_NULL",
15056              "name": null,
15057              "ofType": {
15058                "kind": "SCALAR",
15059                "name": "String",
15060                "ofType": null
15061              }
15062            },
15063            "isDeprecated": false,
15064            "deprecationReason": null
15065          },
15066          {
15067            "name": "createdAt",
15068            "description": null,
15069            "args": [],
15070            "type": {
15071              "kind": "NON_NULL",
15072              "name": null,
15073              "ofType": {
15074                "kind": "SCALAR",
15075                "name": "DateTime",
15076                "ofType": null
15077              }
15078            },
15079            "isDeprecated": false,
15080            "deprecationReason": null
15081          },
15082          {
15083            "name": "id",
15084            "description": null,
15085            "args": [],
15086            "type": {
15087              "kind": "NON_NULL",
15088              "name": null,
15089              "ofType": {
15090                "kind": "SCALAR",
15091                "name": "ID",
15092                "ofType": null
15093              }
15094            },
15095            "isDeprecated": false,
15096            "deprecationReason": null
15097          },
15098          {
15099            "name": "privateKeyIdentifier",
15100            "description": null,
15101            "args": [],
15102            "type": {
15103              "kind": "NON_NULL",
15104              "name": null,
15105              "ofType": {
15106                "kind": "SCALAR",
15107                "name": "String",
15108                "ofType": null
15109              }
15110            },
15111            "isDeprecated": false,
15112            "deprecationReason": null
15113          },
15114          {
15115            "name": "projectIdentifier",
15116            "description": null,
15117            "args": [],
15118            "type": {
15119              "kind": "NON_NULL",
15120              "name": null,
15121              "ofType": {
15122                "kind": "SCALAR",
15123                "name": "String",
15124                "ofType": null
15125              }
15126            },
15127            "isDeprecated": false,
15128            "deprecationReason": null
15129          },
15130          {
15131            "name": "updatedAt",
15132            "description": null,
15133            "args": [],
15134            "type": {
15135              "kind": "NON_NULL",
15136              "name": null,
15137              "ofType": {
15138                "kind": "SCALAR",
15139                "name": "DateTime",
15140                "ofType": null
15141              }
15142            },
15143            "isDeprecated": false,
15144            "deprecationReason": null
15145          }
15146        ],
15147        "inputFields": null,
15148        "interfaces": [],
15149        "enumValues": null,
15150        "possibleTypes": null
15151      },
15152      {
15153        "kind": "INPUT_OBJECT",
15154        "name": "GoogleServiceAccountKeyInput",
15155        "description": null,
15156        "fields": null,
15157        "inputFields": [
15158          {
15159            "name": "jsonKey",
15160            "description": null,
15161            "type": {
15162              "kind": "NON_NULL",
15163              "name": null,
15164              "ofType": {
15165                "kind": "SCALAR",
15166                "name": "JSONObject",
15167                "ofType": null
15168              }
15169            },
15170            "defaultValue": null,
15171            "isDeprecated": false,
15172            "deprecationReason": null
15173          }
15174        ],
15175        "interfaces": null,
15176        "enumValues": null,
15177        "possibleTypes": null
15178      },
15179      {
15180        "kind": "OBJECT",
15181        "name": "GoogleServiceAccountKeyMutation",
15182        "description": null,
15183        "fields": [
15184          {
15185            "name": "createGoogleServiceAccountKey",
15186            "description": "Create a Google Service Account Key",
15187            "args": [
15188              {
15189                "name": "accountId",
15190                "description": null,
15191                "type": {
15192                  "kind": "NON_NULL",
15193                  "name": null,
15194                  "ofType": {
15195                    "kind": "SCALAR",
15196                    "name": "ID",
15197                    "ofType": null
15198                  }
15199                },
15200                "defaultValue": null,
15201                "isDeprecated": false,
15202                "deprecationReason": null
15203              },
15204              {
15205                "name": "googleServiceAccountKeyInput",
15206                "description": null,
15207                "type": {
15208                  "kind": "NON_NULL",
15209                  "name": null,
15210                  "ofType": {
15211                    "kind": "INPUT_OBJECT",
15212                    "name": "GoogleServiceAccountKeyInput",
15213                    "ofType": null
15214                  }
15215                },
15216                "defaultValue": null,
15217                "isDeprecated": false,
15218                "deprecationReason": null
15219              }
15220            ],
15221            "type": {
15222              "kind": "NON_NULL",
15223              "name": null,
15224              "ofType": {
15225                "kind": "OBJECT",
15226                "name": "GoogleServiceAccountKey",
15227                "ofType": null
15228              }
15229            },
15230            "isDeprecated": false,
15231            "deprecationReason": null
15232          },
15233          {
15234            "name": "deleteGoogleServiceAccountKey",
15235            "description": "Delete a Google Service Account Key",
15236            "args": [
15237              {
15238                "name": "id",
15239                "description": null,
15240                "type": {
15241                  "kind": "NON_NULL",
15242                  "name": null,
15243                  "ofType": {
15244                    "kind": "SCALAR",
15245                    "name": "ID",
15246                    "ofType": null
15247                  }
15248                },
15249                "defaultValue": null,
15250                "isDeprecated": false,
15251                "deprecationReason": null
15252              }
15253            ],
15254            "type": {
15255              "kind": "NON_NULL",
15256              "name": null,
15257              "ofType": {
15258                "kind": "OBJECT",
15259                "name": "DeleteGoogleServiceAccountKeyResult",
15260                "ofType": null
15261              }
15262            },
15263            "isDeprecated": false,
15264            "deprecationReason": null
15265          }
15266        ],
15267        "inputFields": null,
15268        "interfaces": [],
15269        "enumValues": null,
15270        "possibleTypes": null
15271      },
15272      {
15273        "kind": "SCALAR",
15274        "name": "ID",
15275        "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.",
15276        "fields": null,
15277        "inputFields": null,
15278        "interfaces": null,
15279        "enumValues": null,
15280        "possibleTypes": null
15281      },
15282      {
15283        "kind": "SCALAR",
15284        "name": "Int",
15285        "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.",
15286        "fields": null,
15287        "inputFields": null,
15288        "interfaces": null,
15289        "enumValues": null,
15290        "possibleTypes": null
15291      },
15292      {
15293        "kind": "OBJECT",
15294        "name": "Invoice",
15295        "description": null,
15296        "fields": [
15297          {
15298            "name": "amountDue",
15299            "description": "The total amount due for the invoice, in cents",
15300            "args": [],
15301            "type": {
15302              "kind": "NON_NULL",
15303              "name": null,
15304              "ofType": {
15305                "kind": "SCALAR",
15306                "name": "Int",
15307                "ofType": null
15308              }
15309            },
15310            "isDeprecated": false,
15311            "deprecationReason": null
15312          },
15313          {
15314            "name": "amountPaid",
15315            "description": "The total amount that has been paid, considering any discounts or account credit. Value is in cents.",
15316            "args": [],
15317            "type": {
15318              "kind": "NON_NULL",
15319              "name": null,
15320              "ofType": {
15321                "kind": "SCALAR",
15322                "name": "Int",
15323                "ofType": null
15324              }
15325            },
15326            "isDeprecated": false,
15327            "deprecationReason": null
15328          },
15329          {
15330            "name": "amountRemaining",
15331            "description": "The total amount that needs to be paid, considering any discounts or account credit. Value is in cents.",
15332            "args": [],
15333            "type": {
15334              "kind": "NON_NULL",
15335              "name": null,
15336              "ofType": {
15337                "kind": "SCALAR",
15338                "name": "Int",
15339                "ofType": null
15340              }
15341            },
15342            "isDeprecated": false,
15343            "deprecationReason": null
15344          },
15345          {
15346            "name": "discount",
15347            "description": null,
15348            "args": [],
15349            "type": {
15350              "kind": "OBJECT",
15351              "name": "InvoiceDiscount",
15352              "ofType": null
15353            },
15354            "isDeprecated": false,
15355            "deprecationReason": null
15356          },
15357          {
15358            "name": "id",
15359            "description": null,
15360            "args": [],
15361            "type": {
15362              "kind": "NON_NULL",
15363              "name": null,
15364              "ofType": {
15365                "kind": "SCALAR",
15366                "name": "ID",
15367                "ofType": null
15368              }
15369            },
15370            "isDeprecated": false,
15371            "deprecationReason": null
15372          },
15373          {
15374            "name": "lineItems",
15375            "description": null,
15376            "args": [],
15377            "type": {
15378              "kind": "NON_NULL",
15379              "name": null,
15380              "ofType": {
15381                "kind": "LIST",
15382                "name": null,
15383                "ofType": {
15384                  "kind": "NON_NULL",
15385                  "name": null,
15386                  "ofType": {
15387                    "kind": "OBJECT",
15388                    "name": "InvoiceLineItem",
15389                    "ofType": null
15390                  }
15391                }
15392              }
15393            },
15394            "isDeprecated": false,
15395            "deprecationReason": null
15396          },
15397          {
15398            "name": "period",
15399            "description": null,
15400            "args": [],
15401            "type": {
15402              "kind": "NON_NULL",
15403              "name": null,
15404              "ofType": {
15405                "kind": "OBJECT",
15406                "name": "InvoicePeriod",
15407                "ofType": null
15408              }
15409            },
15410            "isDeprecated": false,
15411            "deprecationReason": null
15412          },
15413          {
15414            "name": "startingBalance",
15415            "description": null,
15416            "args": [],
15417            "type": {
15418              "kind": "NON_NULL",
15419              "name": null,
15420              "ofType": {
15421                "kind": "SCALAR",
15422                "name": "Int",
15423                "ofType": null
15424              }
15425            },
15426            "isDeprecated": false,
15427            "deprecationReason": null
15428          },
15429          {
15430            "name": "subtotal",
15431            "description": null,
15432            "args": [],
15433            "type": {
15434              "kind": "NON_NULL",
15435              "name": null,
15436              "ofType": {
15437                "kind": "SCALAR",
15438                "name": "Int",
15439                "ofType": null
15440              }
15441            },
15442            "isDeprecated": false,
15443            "deprecationReason": null
15444          },
15445          {
15446            "name": "total",
15447            "description": null,
15448            "args": [],
15449            "type": {
15450              "kind": "NON_NULL",
15451              "name": null,
15452              "ofType": {
15453                "kind": "SCALAR",
15454                "name": "Int",
15455                "ofType": null
15456              }
15457            },
15458            "isDeprecated": false,
15459            "deprecationReason": null
15460          },
15461          {
15462            "name": "totalDiscountedAmount",
15463            "description": null,
15464            "args": [],
15465            "type": {
15466              "kind": "NON_NULL",
15467              "name": null,
15468              "ofType": {
15469                "kind": "SCALAR",
15470                "name": "Int",
15471                "ofType": null
15472              }
15473            },
15474            "isDeprecated": false,
15475            "deprecationReason": null
15476          }
15477        ],
15478        "inputFields": null,
15479        "interfaces": [],
15480        "enumValues": null,
15481        "possibleTypes": null
15482      },
15483      {
15484        "kind": "OBJECT",
15485        "name": "InvoiceDiscount",
15486        "description": null,
15487        "fields": [
15488          {
15489            "name": "amount",
15490            "description": "The coupon's discount value, in percentage or in dollar amount",
15491            "args": [],
15492            "type": {
15493              "kind": "NON_NULL",
15494              "name": null,
15495              "ofType": {
15496                "kind": "SCALAR",
15497                "name": "Int",
15498                "ofType": null
15499              }
15500            },
15501            "isDeprecated": false,
15502            "deprecationReason": null
15503          },
15504          {
15505            "name": "duration",
15506            "description": null,
15507            "args": [],
15508            "type": {
15509              "kind": "NON_NULL",
15510              "name": null,
15511              "ofType": {
15512                "kind": "SCALAR",
15513                "name": "String",
15514                "ofType": null
15515              }
15516            },
15517            "isDeprecated": false,
15518            "deprecationReason": null
15519          },
15520          {
15521            "name": "durationInMonths",
15522            "description": null,
15523            "args": [],
15524            "type": {
15525              "kind": "SCALAR",
15526              "name": "Int",
15527              "ofType": null
15528            },
15529            "isDeprecated": false,
15530            "deprecationReason": null
15531          },
15532          {
15533            "name": "id",
15534            "description": null,
15535            "args": [],
15536            "type": {
15537              "kind": "NON_NULL",
15538              "name": null,
15539              "ofType": {
15540                "kind": "SCALAR",
15541                "name": "ID",
15542                "ofType": null
15543              }
15544            },
15545            "isDeprecated": false,
15546            "deprecationReason": null
15547          },
15548          {
15549            "name": "name",
15550            "description": null,
15551            "args": [],
15552            "type": {
15553              "kind": "NON_NULL",
15554              "name": null,
15555              "ofType": {
15556                "kind": "SCALAR",
15557                "name": "String",
15558                "ofType": null
15559              }
15560            },
15561            "isDeprecated": false,
15562            "deprecationReason": null
15563          },
15564          {
15565            "name": "type",
15566            "description": null,
15567            "args": [],
15568            "type": {
15569              "kind": "NON_NULL",
15570              "name": null,
15571              "ofType": {
15572                "kind": "ENUM",
15573                "name": "InvoiceDiscountType",
15574                "ofType": null
15575              }
15576            },
15577            "isDeprecated": false,
15578            "deprecationReason": null
15579          }
15580        ],
15581        "inputFields": null,
15582        "interfaces": [],
15583        "enumValues": null,
15584        "possibleTypes": null
15585      },
15586      {
15587        "kind": "ENUM",
15588        "name": "InvoiceDiscountType",
15589        "description": null,
15590        "fields": null,
15591        "inputFields": null,
15592        "interfaces": null,
15593        "enumValues": [
15594          {
15595            "name": "AMOUNT",
15596            "description": null,
15597            "isDeprecated": false,
15598            "deprecationReason": null
15599          },
15600          {
15601            "name": "PERCENTAGE",
15602            "description": null,
15603            "isDeprecated": false,
15604            "deprecationReason": null
15605          }
15606        ],
15607        "possibleTypes": null
15608      },
15609      {
15610        "kind": "OBJECT",
15611        "name": "InvoiceLineItem",
15612        "description": null,
15613        "fields": [
15614          {
15615            "name": "amount",
15616            "description": "Line-item amount in cents",
15617            "args": [],
15618            "type": {
15619              "kind": "NON_NULL",
15620              "name": null,
15621              "ofType": {
15622                "kind": "SCALAR",
15623                "name": "Int",
15624                "ofType": null
15625              }
15626            },
15627            "isDeprecated": false,
15628            "deprecationReason": null
15629          },
15630          {
15631            "name": "description",
15632            "description": null,
15633            "args": [],
15634            "type": {
15635              "kind": "NON_NULL",
15636              "name": null,
15637              "ofType": {
15638                "kind": "SCALAR",
15639                "name": "String",
15640                "ofType": null
15641              }
15642            },
15643            "isDeprecated": false,
15644            "deprecationReason": null
15645          },
15646          {
15647            "name": "id",
15648            "description": null,
15649            "args": [],
15650            "type": {
15651              "kind": "NON_NULL",
15652              "name": null,
15653              "ofType": {
15654                "kind": "SCALAR",
15655                "name": "ID",
15656                "ofType": null
15657              }
15658            },
15659            "isDeprecated": false,
15660            "deprecationReason": null
15661          },
15662          {
15663            "name": "period",
15664            "description": null,
15665            "args": [],
15666            "type": {
15667              "kind": "NON_NULL",
15668              "name": null,
15669              "ofType": {
15670                "kind": "OBJECT",
15671                "name": "InvoicePeriod",
15672                "ofType": null
15673              }
15674            },
15675            "isDeprecated": false,
15676            "deprecationReason": null
15677          },
15678          {
15679            "name": "plan",
15680            "description": null,
15681            "args": [],
15682            "type": {
15683              "kind": "NON_NULL",
15684              "name": null,
15685              "ofType": {
15686                "kind": "OBJECT",
15687                "name": "InvoiceLineItemPlan",
15688                "ofType": null
15689              }
15690            },
15691            "isDeprecated": false,
15692            "deprecationReason": null
15693          },
15694          {
15695            "name": "proration",
15696            "description": null,
15697            "args": [],
15698            "type": {
15699              "kind": "NON_NULL",
15700              "name": null,
15701              "ofType": {
15702                "kind": "SCALAR",
15703                "name": "Boolean",
15704                "ofType": null
15705              }
15706            },
15707            "isDeprecated": false,
15708            "deprecationReason": null
15709          },
15710          {
15711            "name": "quantity",
15712            "description": null,
15713            "args": [],
15714            "type": {
15715              "kind": "NON_NULL",
15716              "name": null,
15717              "ofType": {
15718                "kind": "SCALAR",
15719                "name": "Int",
15720                "ofType": null
15721              }
15722            },
15723            "isDeprecated": false,
15724            "deprecationReason": null
15725          },
15726          {
15727            "name": "title",
15728            "description": null,
15729            "args": [],
15730            "type": {
15731              "kind": "NON_NULL",
15732              "name": null,
15733              "ofType": {
15734                "kind": "SCALAR",
15735                "name": "String",
15736                "ofType": null
15737              }
15738            },
15739            "isDeprecated": false,
15740            "deprecationReason": null
15741          }
15742        ],
15743        "inputFields": null,
15744        "interfaces": [],
15745        "enumValues": null,
15746        "possibleTypes": null
15747      },
15748      {
15749        "kind": "OBJECT",
15750        "name": "InvoiceLineItemPlan",
15751        "description": null,
15752        "fields": [
15753          {
15754            "name": "id",
15755            "description": null,
15756            "args": [],
15757            "type": {
15758              "kind": "NON_NULL",
15759              "name": null,
15760              "ofType": {
15761                "kind": "SCALAR",
15762                "name": "ID",
15763                "ofType": null
15764              }
15765            },
15766            "isDeprecated": false,
15767            "deprecationReason": null
15768          },
15769          {
15770            "name": "name",
15771            "description": null,
15772            "args": [],
15773            "type": {
15774              "kind": "NON_NULL",
15775              "name": null,
15776              "ofType": {
15777                "kind": "SCALAR",
15778                "name": "String",
15779                "ofType": null
15780              }
15781            },
15782            "isDeprecated": false,
15783            "deprecationReason": null
15784          }
15785        ],
15786        "inputFields": null,
15787        "interfaces": [],
15788        "enumValues": null,
15789        "possibleTypes": null
15790      },
15791      {
15792        "kind": "OBJECT",
15793        "name": "InvoicePeriod",
15794        "description": null,
15795        "fields": [
15796          {
15797            "name": "end",
15798            "description": null,
15799            "args": [],
15800            "type": {
15801              "kind": "NON_NULL",
15802              "name": null,
15803              "ofType": {
15804                "kind": "SCALAR",
15805                "name": "DateTime",
15806                "ofType": null
15807              }
15808            },
15809            "isDeprecated": false,
15810            "deprecationReason": null
15811          },
15812          {
15813            "name": "start",
15814            "description": null,
15815            "args": [],
15816            "type": {
15817              "kind": "NON_NULL",
15818              "name": null,
15819              "ofType": {
15820                "kind": "SCALAR",
15821                "name": "DateTime",
15822                "ofType": null
15823              }
15824            },
15825            "isDeprecated": false,
15826            "deprecationReason": null
15827          }
15828        ],
15829        "inputFields": null,
15830        "interfaces": [],
15831        "enumValues": null,
15832        "possibleTypes": null
15833      },
15834      {
15835        "kind": "OBJECT",
15836        "name": "InvoiceQuery",
15837        "description": null,
15838        "fields": [
15839          {
15840            "name": "previewInvoiceForSubscriptionUpdate",
15841            "description": "Preview an upgrade subscription invoice, with proration",
15842            "args": [
15843              {
15844                "name": "accountId",
15845                "description": null,
15846                "type": {
15847                  "kind": "NON_NULL",
15848                  "name": null,
15849                  "ofType": {
15850                    "kind": "SCALAR",
15851                    "name": "String",
15852                    "ofType": null
15853                  }
15854                },
15855                "defaultValue": null,
15856                "isDeprecated": false,
15857                "deprecationReason": null
15858              },
15859              {
15860                "name": "couponCode",
15861                "description": null,
15862                "type": {
15863                  "kind": "SCALAR",
15864                  "name": "String",
15865                  "ofType": null
15866                },
15867                "defaultValue": null,
15868                "isDeprecated": false,
15869                "deprecationReason": null
15870              },
15871              {
15872                "name": "newPlanIdentifier",
15873                "description": null,
15874                "type": {
15875                  "kind": "NON_NULL",
15876                  "name": null,
15877                  "ofType": {
15878                    "kind": "SCALAR",
15879                    "name": "String",
15880                    "ofType": null
15881                  }
15882                },
15883                "defaultValue": null,
15884                "isDeprecated": false,
15885                "deprecationReason": null
15886              }
15887            ],
15888            "type": {
15889              "kind": "NON_NULL",
15890              "name": null,
15891              "ofType": {
15892                "kind": "OBJECT",
15893                "name": "Invoice",
15894                "ofType": null
15895              }
15896            },
15897            "isDeprecated": false,
15898            "deprecationReason": null
15899          }
15900        ],
15901        "inputFields": null,
15902        "interfaces": [],
15903        "enumValues": null,
15904        "possibleTypes": null
15905      },
15906      {
15907        "kind": "OBJECT",
15908        "name": "IosAppBuildCredentials",
15909        "description": null,
15910        "fields": [
15911          {
15912            "name": "appleDevices",
15913            "description": null,
15914            "args": [],
15915            "type": {
15916              "kind": "LIST",
15917              "name": null,
15918              "ofType": {
15919                "kind": "OBJECT",
15920                "name": "AppleDevice",
15921                "ofType": null
15922              }
15923            },
15924            "isDeprecated": true,
15925            "deprecationReason": "Get Apple Devices from AppleProvisioningProfile instead"
15926          },
15927          {
15928            "name": "distributionCertificate",
15929            "description": null,
15930            "args": [],
15931            "type": {
15932              "kind": "OBJECT",
15933              "name": "AppleDistributionCertificate",
15934              "ofType": null
15935            },
15936            "isDeprecated": false,
15937            "deprecationReason": null
15938          },
15939          {
15940            "name": "id",
15941            "description": null,
15942            "args": [],
15943            "type": {
15944              "kind": "NON_NULL",
15945              "name": null,
15946              "ofType": {
15947                "kind": "SCALAR",
15948                "name": "ID",
15949                "ofType": null
15950              }
15951            },
15952            "isDeprecated": false,
15953            "deprecationReason": null
15954          },
15955          {
15956            "name": "iosAppCredentials",
15957            "description": null,
15958            "args": [],
15959            "type": {
15960              "kind": "NON_NULL",
15961              "name": null,
15962              "ofType": {
15963                "kind": "OBJECT",
15964                "name": "IosAppCredentials",
15965                "ofType": null
15966              }
15967            },
15968            "isDeprecated": false,
15969            "deprecationReason": null
15970          },
15971          {
15972            "name": "iosDistributionType",
15973            "description": null,
15974            "args": [],
15975            "type": {
15976              "kind": "NON_NULL",
15977              "name": null,
15978              "ofType": {
15979                "kind": "ENUM",
15980                "name": "IosDistributionType",
15981                "ofType": null
15982              }
15983            },
15984            "isDeprecated": false,
15985            "deprecationReason": null
15986          },
15987          {
15988            "name": "provisioningProfile",
15989            "description": null,
15990            "args": [],
15991            "type": {
15992              "kind": "OBJECT",
15993              "name": "AppleProvisioningProfile",
15994              "ofType": null
15995            },
15996            "isDeprecated": false,
15997            "deprecationReason": null
15998          }
15999        ],
16000        "inputFields": null,
16001        "interfaces": [],
16002        "enumValues": null,
16003        "possibleTypes": null
16004      },
16005      {
16006        "kind": "INPUT_OBJECT",
16007        "name": "IosAppBuildCredentialsFilter",
16008        "description": null,
16009        "fields": null,
16010        "inputFields": [
16011          {
16012            "name": "iosDistributionType",
16013            "description": null,
16014            "type": {
16015              "kind": "ENUM",
16016              "name": "IosDistributionType",
16017              "ofType": null
16018            },
16019            "defaultValue": null,
16020            "isDeprecated": false,
16021            "deprecationReason": null
16022          }
16023        ],
16024        "interfaces": null,
16025        "enumValues": null,
16026        "possibleTypes": null
16027      },
16028      {
16029        "kind": "INPUT_OBJECT",
16030        "name": "IosAppBuildCredentialsInput",
16031        "description": null,
16032        "fields": null,
16033        "inputFields": [
16034          {
16035            "name": "distributionCertificateId",
16036            "description": null,
16037            "type": {
16038              "kind": "NON_NULL",
16039              "name": null,
16040              "ofType": {
16041                "kind": "SCALAR",
16042                "name": "ID",
16043                "ofType": null
16044              }
16045            },
16046            "defaultValue": null,
16047            "isDeprecated": false,
16048            "deprecationReason": null
16049          },
16050          {
16051            "name": "iosDistributionType",
16052            "description": null,
16053            "type": {
16054              "kind": "NON_NULL",
16055              "name": null,
16056              "ofType": {
16057                "kind": "ENUM",
16058                "name": "IosDistributionType",
16059                "ofType": null
16060              }
16061            },
16062            "defaultValue": null,
16063            "isDeprecated": false,
16064            "deprecationReason": null
16065          },
16066          {
16067            "name": "provisioningProfileId",
16068            "description": null,
16069            "type": {
16070              "kind": "NON_NULL",
16071              "name": null,
16072              "ofType": {
16073                "kind": "SCALAR",
16074                "name": "ID",
16075                "ofType": null
16076              }
16077            },
16078            "defaultValue": null,
16079            "isDeprecated": false,
16080            "deprecationReason": null
16081          }
16082        ],
16083        "interfaces": null,
16084        "enumValues": null,
16085        "possibleTypes": null
16086      },
16087      {
16088        "kind": "OBJECT",
16089        "name": "IosAppBuildCredentialsMutation",
16090        "description": null,
16091        "fields": [
16092          {
16093            "name": "createIosAppBuildCredentials",
16094            "description": "Create a set of build credentials for an iOS app",
16095            "args": [
16096              {
16097                "name": "iosAppBuildCredentialsInput",
16098                "description": null,
16099                "type": {
16100                  "kind": "NON_NULL",
16101                  "name": null,
16102                  "ofType": {
16103                    "kind": "INPUT_OBJECT",
16104                    "name": "IosAppBuildCredentialsInput",
16105                    "ofType": null
16106                  }
16107                },
16108                "defaultValue": null,
16109                "isDeprecated": false,
16110                "deprecationReason": null
16111              },
16112              {
16113                "name": "iosAppCredentialsId",
16114                "description": null,
16115                "type": {
16116                  "kind": "NON_NULL",
16117                  "name": null,
16118                  "ofType": {
16119                    "kind": "SCALAR",
16120                    "name": "ID",
16121                    "ofType": null
16122                  }
16123                },
16124                "defaultValue": null,
16125                "isDeprecated": false,
16126                "deprecationReason": null
16127              }
16128            ],
16129            "type": {
16130              "kind": "NON_NULL",
16131              "name": null,
16132              "ofType": {
16133                "kind": "OBJECT",
16134                "name": "IosAppBuildCredentials",
16135                "ofType": null
16136              }
16137            },
16138            "isDeprecated": false,
16139            "deprecationReason": null
16140          },
16141          {
16142            "name": "setDistributionCertificate",
16143            "description": "Set the distribution certificate to be used for an iOS app",
16144            "args": [
16145              {
16146                "name": "distributionCertificateId",
16147                "description": null,
16148                "type": {
16149                  "kind": "NON_NULL",
16150                  "name": null,
16151                  "ofType": {
16152                    "kind": "SCALAR",
16153                    "name": "ID",
16154                    "ofType": null
16155                  }
16156                },
16157                "defaultValue": null,
16158                "isDeprecated": false,
16159                "deprecationReason": null
16160              },
16161              {
16162                "name": "id",
16163                "description": null,
16164                "type": {
16165                  "kind": "NON_NULL",
16166                  "name": null,
16167                  "ofType": {
16168                    "kind": "SCALAR",
16169                    "name": "ID",
16170                    "ofType": null
16171                  }
16172                },
16173                "defaultValue": null,
16174                "isDeprecated": false,
16175                "deprecationReason": null
16176              }
16177            ],
16178            "type": {
16179              "kind": "NON_NULL",
16180              "name": null,
16181              "ofType": {
16182                "kind": "OBJECT",
16183                "name": "IosAppBuildCredentials",
16184                "ofType": null
16185              }
16186            },
16187            "isDeprecated": false,
16188            "deprecationReason": null
16189          },
16190          {
16191            "name": "setProvisioningProfile",
16192            "description": "Set the provisioning profile to be used for an iOS app",
16193            "args": [
16194              {
16195                "name": "id",
16196                "description": null,
16197                "type": {
16198                  "kind": "NON_NULL",
16199                  "name": null,
16200                  "ofType": {
16201                    "kind": "SCALAR",
16202                    "name": "ID",
16203                    "ofType": null
16204                  }
16205                },
16206                "defaultValue": null,
16207                "isDeprecated": false,
16208                "deprecationReason": null
16209              },
16210              {
16211                "name": "provisioningProfileId",
16212                "description": null,
16213                "type": {
16214                  "kind": "NON_NULL",
16215                  "name": null,
16216                  "ofType": {
16217                    "kind": "SCALAR",
16218                    "name": "ID",
16219                    "ofType": null
16220                  }
16221                },
16222                "defaultValue": null,
16223                "isDeprecated": false,
16224                "deprecationReason": null
16225              }
16226            ],
16227            "type": {
16228              "kind": "NON_NULL",
16229              "name": null,
16230              "ofType": {
16231                "kind": "OBJECT",
16232                "name": "IosAppBuildCredentials",
16233                "ofType": null
16234              }
16235            },
16236            "isDeprecated": false,
16237            "deprecationReason": null
16238          }
16239        ],
16240        "inputFields": null,
16241        "interfaces": [],
16242        "enumValues": null,
16243        "possibleTypes": null
16244      },
16245      {
16246        "kind": "OBJECT",
16247        "name": "IosAppCredentials",
16248        "description": null,
16249        "fields": [
16250          {
16251            "name": "app",
16252            "description": null,
16253            "args": [],
16254            "type": {
16255              "kind": "NON_NULL",
16256              "name": null,
16257              "ofType": {
16258                "kind": "OBJECT",
16259                "name": "App",
16260                "ofType": null
16261              }
16262            },
16263            "isDeprecated": false,
16264            "deprecationReason": null
16265          },
16266          {
16267            "name": "appStoreConnectApiKeyForSubmissions",
16268            "description": null,
16269            "args": [],
16270            "type": {
16271              "kind": "OBJECT",
16272              "name": "AppStoreConnectApiKey",
16273              "ofType": null
16274            },
16275            "isDeprecated": false,
16276            "deprecationReason": null
16277          },
16278          {
16279            "name": "appleAppIdentifier",
16280            "description": null,
16281            "args": [],
16282            "type": {
16283              "kind": "NON_NULL",
16284              "name": null,
16285              "ofType": {
16286                "kind": "OBJECT",
16287                "name": "AppleAppIdentifier",
16288                "ofType": null
16289              }
16290            },
16291            "isDeprecated": false,
16292            "deprecationReason": null
16293          },
16294          {
16295            "name": "appleTeam",
16296            "description": null,
16297            "args": [],
16298            "type": {
16299              "kind": "OBJECT",
16300              "name": "AppleTeam",
16301              "ofType": null
16302            },
16303            "isDeprecated": false,
16304            "deprecationReason": null
16305          },
16306          {
16307            "name": "id",
16308            "description": null,
16309            "args": [],
16310            "type": {
16311              "kind": "NON_NULL",
16312              "name": null,
16313              "ofType": {
16314                "kind": "SCALAR",
16315                "name": "ID",
16316                "ofType": null
16317              }
16318            },
16319            "isDeprecated": false,
16320            "deprecationReason": null
16321          },
16322          {
16323            "name": "iosAppBuildCredentialsArray",
16324            "description": null,
16325            "args": [
16326              {
16327                "name": "filter",
16328                "description": null,
16329                "type": {
16330                  "kind": "INPUT_OBJECT",
16331                  "name": "IosAppBuildCredentialsFilter",
16332                  "ofType": null
16333                },
16334                "defaultValue": null,
16335                "isDeprecated": false,
16336                "deprecationReason": null
16337              }
16338            ],
16339            "type": {
16340              "kind": "NON_NULL",
16341              "name": null,
16342              "ofType": {
16343                "kind": "LIST",
16344                "name": null,
16345                "ofType": {
16346                  "kind": "NON_NULL",
16347                  "name": null,
16348                  "ofType": {
16349                    "kind": "OBJECT",
16350                    "name": "IosAppBuildCredentials",
16351                    "ofType": null
16352                  }
16353                }
16354              }
16355            },
16356            "isDeprecated": true,
16357            "deprecationReason": "use iosAppBuildCredentialsList instead"
16358          },
16359          {
16360            "name": "iosAppBuildCredentialsList",
16361            "description": null,
16362            "args": [
16363              {
16364                "name": "filter",
16365                "description": null,
16366                "type": {
16367                  "kind": "INPUT_OBJECT",
16368                  "name": "IosAppBuildCredentialsFilter",
16369                  "ofType": null
16370                },
16371                "defaultValue": null,
16372                "isDeprecated": false,
16373                "deprecationReason": null
16374              }
16375            ],
16376            "type": {
16377              "kind": "NON_NULL",
16378              "name": null,
16379              "ofType": {
16380                "kind": "LIST",
16381                "name": null,
16382                "ofType": {
16383                  "kind": "NON_NULL",
16384                  "name": null,
16385                  "ofType": {
16386                    "kind": "OBJECT",
16387                    "name": "IosAppBuildCredentials",
16388                    "ofType": null
16389                  }
16390                }
16391              }
16392            },
16393            "isDeprecated": false,
16394            "deprecationReason": null
16395          },
16396          {
16397            "name": "pushKey",
16398            "description": null,
16399            "args": [],
16400            "type": {
16401              "kind": "OBJECT",
16402              "name": "ApplePushKey",
16403              "ofType": null
16404            },
16405            "isDeprecated": false,
16406            "deprecationReason": null
16407          }
16408        ],
16409        "inputFields": null,
16410        "interfaces": [],
16411        "enumValues": null,
16412        "possibleTypes": null
16413      },
16414      {
16415        "kind": "INPUT_OBJECT",
16416        "name": "IosAppCredentialsFilter",
16417        "description": null,
16418        "fields": null,
16419        "inputFields": [
16420          {
16421            "name": "appleAppIdentifierId",
16422            "description": null,
16423            "type": {
16424              "kind": "SCALAR",
16425              "name": "String",
16426              "ofType": null
16427            },
16428            "defaultValue": null,
16429            "isDeprecated": false,
16430            "deprecationReason": null
16431          }
16432        ],
16433        "interfaces": null,
16434        "enumValues": null,
16435        "possibleTypes": null
16436      },
16437      {
16438        "kind": "INPUT_OBJECT",
16439        "name": "IosAppCredentialsInput",
16440        "description": null,
16441        "fields": null,
16442        "inputFields": [
16443          {
16444            "name": "appStoreConnectApiKeyForSubmissionsId",
16445            "description": null,
16446            "type": {
16447              "kind": "SCALAR",
16448              "name": "ID",
16449              "ofType": null
16450            },
16451            "defaultValue": null,
16452            "isDeprecated": false,
16453            "deprecationReason": null
16454          },
16455          {
16456            "name": "appleTeamId",
16457            "description": null,
16458            "type": {
16459              "kind": "SCALAR",
16460              "name": "ID",
16461              "ofType": null
16462            },
16463            "defaultValue": null,
16464            "isDeprecated": false,
16465            "deprecationReason": null
16466          },
16467          {
16468            "name": "pushKeyId",
16469            "description": null,
16470            "type": {
16471              "kind": "SCALAR",
16472              "name": "ID",
16473              "ofType": null
16474            },
16475            "defaultValue": null,
16476            "isDeprecated": false,
16477            "deprecationReason": null
16478          }
16479        ],
16480        "interfaces": null,
16481        "enumValues": null,
16482        "possibleTypes": null
16483      },
16484      {
16485        "kind": "OBJECT",
16486        "name": "IosAppCredentialsMutation",
16487        "description": null,
16488        "fields": [
16489          {
16490            "name": "createIosAppCredentials",
16491            "description": "Create a set of credentials for an iOS app",
16492            "args": [
16493              {
16494                "name": "appId",
16495                "description": null,
16496                "type": {
16497                  "kind": "NON_NULL",
16498                  "name": null,
16499                  "ofType": {
16500                    "kind": "SCALAR",
16501                    "name": "ID",
16502                    "ofType": null
16503                  }
16504                },
16505                "defaultValue": null,
16506                "isDeprecated": false,
16507                "deprecationReason": null
16508              },
16509              {
16510                "name": "appleAppIdentifierId",
16511                "description": null,
16512                "type": {
16513                  "kind": "NON_NULL",
16514                  "name": null,
16515                  "ofType": {
16516                    "kind": "SCALAR",
16517                    "name": "ID",
16518                    "ofType": null
16519                  }
16520                },
16521                "defaultValue": null,
16522                "isDeprecated": false,
16523                "deprecationReason": null
16524              },
16525              {
16526                "name": "iosAppCredentialsInput",
16527                "description": null,
16528                "type": {
16529                  "kind": "NON_NULL",
16530                  "name": null,
16531                  "ofType": {
16532                    "kind": "INPUT_OBJECT",
16533                    "name": "IosAppCredentialsInput",
16534                    "ofType": null
16535                  }
16536                },
16537                "defaultValue": null,
16538                "isDeprecated": false,
16539                "deprecationReason": null
16540              }
16541            ],
16542            "type": {
16543              "kind": "NON_NULL",
16544              "name": null,
16545              "ofType": {
16546                "kind": "OBJECT",
16547                "name": "IosAppCredentials",
16548                "ofType": null
16549              }
16550            },
16551            "isDeprecated": false,
16552            "deprecationReason": null
16553          },
16554          {
16555            "name": "setAppStoreConnectApiKeyForSubmissions",
16556            "description": "Set the App Store Connect Api Key to be used for submitting an iOS app",
16557            "args": [
16558              {
16559                "name": "ascApiKeyId",
16560                "description": null,
16561                "type": {
16562                  "kind": "NON_NULL",
16563                  "name": null,
16564                  "ofType": {
16565                    "kind": "SCALAR",
16566                    "name": "ID",
16567                    "ofType": null
16568                  }
16569                },
16570                "defaultValue": null,
16571                "isDeprecated": false,
16572                "deprecationReason": null
16573              },
16574              {
16575                "name": "id",
16576                "description": null,
16577                "type": {
16578                  "kind": "NON_NULL",
16579                  "name": null,
16580                  "ofType": {
16581                    "kind": "SCALAR",
16582                    "name": "ID",
16583                    "ofType": null
16584                  }
16585                },
16586                "defaultValue": null,
16587                "isDeprecated": false,
16588                "deprecationReason": null
16589              }
16590            ],
16591            "type": {
16592              "kind": "NON_NULL",
16593              "name": null,
16594              "ofType": {
16595                "kind": "OBJECT",
16596                "name": "IosAppCredentials",
16597                "ofType": null
16598              }
16599            },
16600            "isDeprecated": false,
16601            "deprecationReason": null
16602          },
16603          {
16604            "name": "setPushKey",
16605            "description": "Set the push key to be used in an iOS app",
16606            "args": [
16607              {
16608                "name": "id",
16609                "description": null,
16610                "type": {
16611                  "kind": "NON_NULL",
16612                  "name": null,
16613                  "ofType": {
16614                    "kind": "SCALAR",
16615                    "name": "ID",
16616                    "ofType": null
16617                  }
16618                },
16619                "defaultValue": null,
16620                "isDeprecated": false,
16621                "deprecationReason": null
16622              },
16623              {
16624                "name": "pushKeyId",
16625                "description": null,
16626                "type": {
16627                  "kind": "NON_NULL",
16628                  "name": null,
16629                  "ofType": {
16630                    "kind": "SCALAR",
16631                    "name": "ID",
16632                    "ofType": null
16633                  }
16634                },
16635                "defaultValue": null,
16636                "isDeprecated": false,
16637                "deprecationReason": null
16638              }
16639            ],
16640            "type": {
16641              "kind": "NON_NULL",
16642              "name": null,
16643              "ofType": {
16644                "kind": "OBJECT",
16645                "name": "IosAppCredentials",
16646                "ofType": null
16647              }
16648            },
16649            "isDeprecated": false,
16650            "deprecationReason": null
16651          }
16652        ],
16653        "inputFields": null,
16654        "interfaces": [],
16655        "enumValues": null,
16656        "possibleTypes": null
16657      },
16658      {
16659        "kind": "ENUM",
16660        "name": "IosBuildType",
16661        "description": "@deprecated Use developmentClient option instead.",
16662        "fields": null,
16663        "inputFields": null,
16664        "interfaces": null,
16665        "enumValues": [
16666          {
16667            "name": "DEVELOPMENT_CLIENT",
16668            "description": null,
16669            "isDeprecated": false,
16670            "deprecationReason": null
16671          },
16672          {
16673            "name": "RELEASE",
16674            "description": null,
16675            "isDeprecated": false,
16676            "deprecationReason": null
16677          }
16678        ],
16679        "possibleTypes": null
16680      },
16681      {
16682        "kind": "INPUT_OBJECT",
16683        "name": "IosBuilderEnvironmentInput",
16684        "description": null,
16685        "fields": null,
16686        "inputFields": [
16687          {
16688            "name": "bundler",
16689            "description": null,
16690            "type": {
16691              "kind": "SCALAR",
16692              "name": "String",
16693              "ofType": null
16694            },
16695            "defaultValue": null,
16696            "isDeprecated": false,
16697            "deprecationReason": null
16698          },
16699          {
16700            "name": "cocoapods",
16701            "description": null,
16702            "type": {
16703              "kind": "SCALAR",
16704              "name": "String",
16705              "ofType": null
16706            },
16707            "defaultValue": null,
16708            "isDeprecated": false,
16709            "deprecationReason": null
16710          },
16711          {
16712            "name": "env",
16713            "description": null,
16714            "type": {
16715              "kind": "SCALAR",
16716              "name": "JSONObject",
16717              "ofType": null
16718            },
16719            "defaultValue": null,
16720            "isDeprecated": false,
16721            "deprecationReason": null
16722          },
16723          {
16724            "name": "expoCli",
16725            "description": null,
16726            "type": {
16727              "kind": "SCALAR",
16728              "name": "String",
16729              "ofType": null
16730            },
16731            "defaultValue": null,
16732            "isDeprecated": false,
16733            "deprecationReason": null
16734          },
16735          {
16736            "name": "fastlane",
16737            "description": null,
16738            "type": {
16739              "kind": "SCALAR",
16740              "name": "String",
16741              "ofType": null
16742            },
16743            "defaultValue": null,
16744            "isDeprecated": false,
16745            "deprecationReason": null
16746          },
16747          {
16748            "name": "image",
16749            "description": null,
16750            "type": {
16751              "kind": "SCALAR",
16752              "name": "String",
16753              "ofType": null
16754            },
16755            "defaultValue": null,
16756            "isDeprecated": false,
16757            "deprecationReason": null
16758          },
16759          {
16760            "name": "node",
16761            "description": null,
16762            "type": {
16763              "kind": "SCALAR",
16764              "name": "String",
16765              "ofType": null
16766            },
16767            "defaultValue": null,
16768            "isDeprecated": false,
16769            "deprecationReason": null
16770          },
16771          {
16772            "name": "yarn",
16773            "description": null,
16774            "type": {
16775              "kind": "SCALAR",
16776              "name": "String",
16777              "ofType": null
16778            },
16779            "defaultValue": null,
16780            "isDeprecated": false,
16781            "deprecationReason": null
16782          }
16783        ],
16784        "interfaces": null,
16785        "enumValues": null,
16786        "possibleTypes": null
16787      },
16788      {
16789        "kind": "ENUM",
16790        "name": "IosDistributionType",
16791        "description": null,
16792        "fields": null,
16793        "inputFields": null,
16794        "interfaces": null,
16795        "enumValues": [
16796          {
16797            "name": "AD_HOC",
16798            "description": null,
16799            "isDeprecated": false,
16800            "deprecationReason": null
16801          },
16802          {
16803            "name": "APP_STORE",
16804            "description": null,
16805            "isDeprecated": false,
16806            "deprecationReason": null
16807          },
16808          {
16809            "name": "DEVELOPMENT",
16810            "description": null,
16811            "isDeprecated": false,
16812            "deprecationReason": null
16813          },
16814          {
16815            "name": "ENTERPRISE",
16816            "description": null,
16817            "isDeprecated": false,
16818            "deprecationReason": null
16819          }
16820        ],
16821        "possibleTypes": null
16822      },
16823      {
16824        "kind": "INPUT_OBJECT",
16825        "name": "IosJobDistributionCertificateInput",
16826        "description": null,
16827        "fields": null,
16828        "inputFields": [
16829          {
16830            "name": "dataBase64",
16831            "description": null,
16832            "type": {
16833              "kind": "NON_NULL",
16834              "name": null,
16835              "ofType": {
16836                "kind": "SCALAR",
16837                "name": "String",
16838                "ofType": null
16839              }
16840            },
16841            "defaultValue": null,
16842            "isDeprecated": false,
16843            "deprecationReason": null
16844          },
16845          {
16846            "name": "password",
16847            "description": null,
16848            "type": {
16849              "kind": "NON_NULL",
16850              "name": null,
16851              "ofType": {
16852                "kind": "SCALAR",
16853                "name": "String",
16854                "ofType": null
16855              }
16856            },
16857            "defaultValue": null,
16858            "isDeprecated": false,
16859            "deprecationReason": null
16860          }
16861        ],
16862        "interfaces": null,
16863        "enumValues": null,
16864        "possibleTypes": null
16865      },
16866      {
16867        "kind": "INPUT_OBJECT",
16868        "name": "IosJobInput",
16869        "description": null,
16870        "fields": null,
16871        "inputFields": [
16872          {
16873            "name": "artifactPath",
16874            "description": null,
16875            "type": {
16876              "kind": "SCALAR",
16877              "name": "String",
16878              "ofType": null
16879            },
16880            "defaultValue": null,
16881            "isDeprecated": false,
16882            "deprecationReason": null
16883          },
16884          {
16885            "name": "buildConfiguration",
16886            "description": null,
16887            "type": {
16888              "kind": "SCALAR",
16889              "name": "String",
16890              "ofType": null
16891            },
16892            "defaultValue": null,
16893            "isDeprecated": false,
16894            "deprecationReason": null
16895          },
16896          {
16897            "name": "buildType",
16898            "description": "@deprecated",
16899            "type": {
16900              "kind": "ENUM",
16901              "name": "IosBuildType",
16902              "ofType": null
16903            },
16904            "defaultValue": null,
16905            "isDeprecated": false,
16906            "deprecationReason": null
16907          },
16908          {
16909            "name": "builderEnvironment",
16910            "description": null,
16911            "type": {
16912              "kind": "INPUT_OBJECT",
16913              "name": "IosBuilderEnvironmentInput",
16914              "ofType": null
16915            },
16916            "defaultValue": null,
16917            "isDeprecated": false,
16918            "deprecationReason": null
16919          },
16920          {
16921            "name": "cache",
16922            "description": null,
16923            "type": {
16924              "kind": "INPUT_OBJECT",
16925              "name": "BuildCacheInput",
16926              "ofType": null
16927            },
16928            "defaultValue": null,
16929            "isDeprecated": false,
16930            "deprecationReason": null
16931          },
16932          {
16933            "name": "developmentClient",
16934            "description": null,
16935            "type": {
16936              "kind": "SCALAR",
16937              "name": "Boolean",
16938              "ofType": null
16939            },
16940            "defaultValue": null,
16941            "isDeprecated": false,
16942            "deprecationReason": null
16943          },
16944          {
16945            "name": "distribution",
16946            "description": "@deprecated",
16947            "type": {
16948              "kind": "ENUM",
16949              "name": "DistributionType",
16950              "ofType": null
16951            },
16952            "defaultValue": null,
16953            "isDeprecated": false,
16954            "deprecationReason": null
16955          },
16956          {
16957            "name": "experimental",
16958            "description": null,
16959            "type": {
16960              "kind": "SCALAR",
16961              "name": "JSONObject",
16962              "ofType": null
16963            },
16964            "defaultValue": null,
16965            "isDeprecated": false,
16966            "deprecationReason": null
16967          },
16968          {
16969            "name": "projectArchive",
16970            "description": null,
16971            "type": {
16972              "kind": "NON_NULL",
16973              "name": null,
16974              "ofType": {
16975                "kind": "INPUT_OBJECT",
16976                "name": "ProjectArchiveSourceInput",
16977                "ofType": null
16978              }
16979            },
16980            "defaultValue": null,
16981            "isDeprecated": false,
16982            "deprecationReason": null
16983          },
16984          {
16985            "name": "projectRootDirectory",
16986            "description": null,
16987            "type": {
16988              "kind": "NON_NULL",
16989              "name": null,
16990              "ofType": {
16991                "kind": "SCALAR",
16992                "name": "String",
16993                "ofType": null
16994              }
16995            },
16996            "defaultValue": null,
16997            "isDeprecated": false,
16998            "deprecationReason": null
16999          },
17000          {
17001            "name": "releaseChannel",
17002            "description": null,
17003            "type": {
17004              "kind": "SCALAR",
17005              "name": "String",
17006              "ofType": null
17007            },
17008            "defaultValue": null,
17009            "isDeprecated": false,
17010            "deprecationReason": null
17011          },
17012          {
17013            "name": "scheme",
17014            "description": null,
17015            "type": {
17016              "kind": "SCALAR",
17017              "name": "String",
17018              "ofType": null
17019            },
17020            "defaultValue": null,
17021            "isDeprecated": false,
17022            "deprecationReason": null
17023          },
17024          {
17025            "name": "secrets",
17026            "description": null,
17027            "type": {
17028              "kind": "INPUT_OBJECT",
17029              "name": "IosJobSecretsInput",
17030              "ofType": null
17031            },
17032            "defaultValue": null,
17033            "isDeprecated": false,
17034            "deprecationReason": null
17035          },
17036          {
17037            "name": "simulator",
17038            "description": null,
17039            "type": {
17040              "kind": "SCALAR",
17041              "name": "Boolean",
17042              "ofType": null
17043            },
17044            "defaultValue": null,
17045            "isDeprecated": false,
17046            "deprecationReason": null
17047          },
17048          {
17049            "name": "type",
17050            "description": null,
17051            "type": {
17052              "kind": "NON_NULL",
17053              "name": null,
17054              "ofType": {
17055                "kind": "ENUM",
17056                "name": "BuildWorkflow",
17057                "ofType": null
17058              }
17059            },
17060            "defaultValue": null,
17061            "isDeprecated": false,
17062            "deprecationReason": null
17063          },
17064          {
17065            "name": "updates",
17066            "description": null,
17067            "type": {
17068              "kind": "INPUT_OBJECT",
17069              "name": "BuildUpdatesInput",
17070              "ofType": null
17071            },
17072            "defaultValue": null,
17073            "isDeprecated": false,
17074            "deprecationReason": null
17075          },
17076          {
17077            "name": "username",
17078            "description": null,
17079            "type": {
17080              "kind": "SCALAR",
17081              "name": "String",
17082              "ofType": null
17083            },
17084            "defaultValue": null,
17085            "isDeprecated": false,
17086            "deprecationReason": null
17087          }
17088        ],
17089        "interfaces": null,
17090        "enumValues": null,
17091        "possibleTypes": null
17092      },
17093      {
17094        "kind": "INPUT_OBJECT",
17095        "name": "IosJobSecretsInput",
17096        "description": null,
17097        "fields": null,
17098        "inputFields": [
17099          {
17100            "name": "buildCredentials",
17101            "description": null,
17102            "type": {
17103              "kind": "LIST",
17104              "name": null,
17105              "ofType": {
17106                "kind": "INPUT_OBJECT",
17107                "name": "IosJobTargetCredentialsInput",
17108                "ofType": null
17109              }
17110            },
17111            "defaultValue": null,
17112            "isDeprecated": false,
17113            "deprecationReason": null
17114          },
17115          {
17116            "name": "environmentSecrets",
17117            "description": null,
17118            "type": {
17119              "kind": "SCALAR",
17120              "name": "JSONObject",
17121              "ofType": null
17122            },
17123            "defaultValue": null,
17124            "isDeprecated": false,
17125            "deprecationReason": null
17126          }
17127        ],
17128        "interfaces": null,
17129        "enumValues": null,
17130        "possibleTypes": null
17131      },
17132      {
17133        "kind": "INPUT_OBJECT",
17134        "name": "IosJobTargetCredentialsInput",
17135        "description": null,
17136        "fields": null,
17137        "inputFields": [
17138          {
17139            "name": "distributionCertificate",
17140            "description": null,
17141            "type": {
17142              "kind": "NON_NULL",
17143              "name": null,
17144              "ofType": {
17145                "kind": "INPUT_OBJECT",
17146                "name": "IosJobDistributionCertificateInput",
17147                "ofType": null
17148              }
17149            },
17150            "defaultValue": null,
17151            "isDeprecated": false,
17152            "deprecationReason": null
17153          },
17154          {
17155            "name": "provisioningProfileBase64",
17156            "description": null,
17157            "type": {
17158              "kind": "NON_NULL",
17159              "name": null,
17160              "ofType": {
17161                "kind": "SCALAR",
17162                "name": "String",
17163                "ofType": null
17164              }
17165            },
17166            "defaultValue": null,
17167            "isDeprecated": false,
17168            "deprecationReason": null
17169          },
17170          {
17171            "name": "targetName",
17172            "description": null,
17173            "type": {
17174              "kind": "NON_NULL",
17175              "name": null,
17176              "ofType": {
17177                "kind": "SCALAR",
17178                "name": "String",
17179                "ofType": null
17180              }
17181            },
17182            "defaultValue": null,
17183            "isDeprecated": false,
17184            "deprecationReason": null
17185          }
17186        ],
17187        "interfaces": null,
17188        "enumValues": null,
17189        "possibleTypes": null
17190      },
17191      {
17192        "kind": "ENUM",
17193        "name": "IosManagedBuildType",
17194        "description": "@deprecated Use developmentClient option instead.",
17195        "fields": null,
17196        "inputFields": null,
17197        "interfaces": null,
17198        "enumValues": [
17199          {
17200            "name": "DEVELOPMENT_CLIENT",
17201            "description": null,
17202            "isDeprecated": false,
17203            "deprecationReason": null
17204          },
17205          {
17206            "name": "RELEASE",
17207            "description": null,
17208            "isDeprecated": false,
17209            "deprecationReason": null
17210          }
17211        ],
17212        "possibleTypes": null
17213      },
17214      {
17215        "kind": "ENUM",
17216        "name": "IosSchemeBuildConfiguration",
17217        "description": null,
17218        "fields": null,
17219        "inputFields": null,
17220        "interfaces": null,
17221        "enumValues": [
17222          {
17223            "name": "DEBUG",
17224            "description": null,
17225            "isDeprecated": false,
17226            "deprecationReason": null
17227          },
17228          {
17229            "name": "RELEASE",
17230            "description": null,
17231            "isDeprecated": false,
17232            "deprecationReason": null
17233          }
17234        ],
17235        "possibleTypes": null
17236      },
17237      {
17238        "kind": "OBJECT",
17239        "name": "IosSubmissionConfig",
17240        "description": null,
17241        "fields": [
17242          {
17243            "name": "appleIdUsername",
17244            "description": null,
17245            "args": [],
17246            "type": {
17247              "kind": "SCALAR",
17248              "name": "String",
17249              "ofType": null
17250            },
17251            "isDeprecated": false,
17252            "deprecationReason": null
17253          },
17254          {
17255            "name": "ascApiKeyId",
17256            "description": null,
17257            "args": [],
17258            "type": {
17259              "kind": "SCALAR",
17260              "name": "String",
17261              "ofType": null
17262            },
17263            "isDeprecated": false,
17264            "deprecationReason": null
17265          },
17266          {
17267            "name": "ascAppIdentifier",
17268            "description": null,
17269            "args": [],
17270            "type": {
17271              "kind": "NON_NULL",
17272              "name": null,
17273              "ofType": {
17274                "kind": "SCALAR",
17275                "name": "String",
17276                "ofType": null
17277              }
17278            },
17279            "isDeprecated": false,
17280            "deprecationReason": null
17281          }
17282        ],
17283        "inputFields": null,
17284        "interfaces": [],
17285        "enumValues": null,
17286        "possibleTypes": null
17287      },
17288      {
17289        "kind": "INPUT_OBJECT",
17290        "name": "IosSubmissionConfigInput",
17291        "description": null,
17292        "fields": null,
17293        "inputFields": [
17294          {
17295            "name": "appleAppSpecificPassword",
17296            "description": null,
17297            "type": {
17298              "kind": "SCALAR",
17299              "name": "String",
17300              "ofType": null
17301            },
17302            "defaultValue": null,
17303            "isDeprecated": false,
17304            "deprecationReason": null
17305          },
17306          {
17307            "name": "appleIdUsername",
17308            "description": null,
17309            "type": {
17310              "kind": "SCALAR",
17311              "name": "String",
17312              "ofType": null
17313            },
17314            "defaultValue": null,
17315            "isDeprecated": false,
17316            "deprecationReason": null
17317          },
17318          {
17319            "name": "archiveUrl",
17320            "description": null,
17321            "type": {
17322              "kind": "SCALAR",
17323              "name": "String",
17324              "ofType": null
17325            },
17326            "defaultValue": null,
17327            "isDeprecated": false,
17328            "deprecationReason": null
17329          },
17330          {
17331            "name": "ascApiKey",
17332            "description": null,
17333            "type": {
17334              "kind": "INPUT_OBJECT",
17335              "name": "AscApiKeyInput",
17336              "ofType": null
17337            },
17338            "defaultValue": null,
17339            "isDeprecated": false,
17340            "deprecationReason": null
17341          },
17342          {
17343            "name": "ascApiKeyId",
17344            "description": null,
17345            "type": {
17346              "kind": "SCALAR",
17347              "name": "String",
17348              "ofType": null
17349            },
17350            "defaultValue": null,
17351            "isDeprecated": false,
17352            "deprecationReason": null
17353          },
17354          {
17355            "name": "ascAppIdentifier",
17356            "description": null,
17357            "type": {
17358              "kind": "NON_NULL",
17359              "name": null,
17360              "ofType": {
17361                "kind": "SCALAR",
17362                "name": "String",
17363                "ofType": null
17364              }
17365            },
17366            "defaultValue": null,
17367            "isDeprecated": false,
17368            "deprecationReason": null
17369          }
17370        ],
17371        "interfaces": null,
17372        "enumValues": null,
17373        "possibleTypes": null
17374      },
17375      {
17376        "kind": "SCALAR",
17377        "name": "JSON",
17378        "description": "The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).",
17379        "fields": null,
17380        "inputFields": null,
17381        "interfaces": null,
17382        "enumValues": null,
17383        "possibleTypes": null
17384      },
17385      {
17386        "kind": "SCALAR",
17387        "name": "JSONObject",
17388        "description": "The `JSONObject` scalar type represents JSON objects as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).",
17389        "fields": null,
17390        "inputFields": null,
17391        "interfaces": null,
17392        "enumValues": null,
17393        "possibleTypes": null
17394      },
17395      {
17396        "kind": "OBJECT",
17397        "name": "KeystoreGenerationUrl",
17398        "description": null,
17399        "fields": [
17400          {
17401            "name": "id",
17402            "description": null,
17403            "args": [],
17404            "type": {
17405              "kind": "NON_NULL",
17406              "name": null,
17407              "ofType": {
17408                "kind": "SCALAR",
17409                "name": "ID",
17410                "ofType": null
17411              }
17412            },
17413            "isDeprecated": false,
17414            "deprecationReason": null
17415          },
17416          {
17417            "name": "url",
17418            "description": null,
17419            "args": [],
17420            "type": {
17421              "kind": "NON_NULL",
17422              "name": null,
17423              "ofType": {
17424                "kind": "SCALAR",
17425                "name": "String",
17426                "ofType": null
17427              }
17428            },
17429            "isDeprecated": false,
17430            "deprecationReason": null
17431          }
17432        ],
17433        "inputFields": null,
17434        "interfaces": [],
17435        "enumValues": null,
17436        "possibleTypes": null
17437      },
17438      {
17439        "kind": "OBJECT",
17440        "name": "KeystoreGenerationUrlMutation",
17441        "description": null,
17442        "fields": [
17443          {
17444            "name": "createKeystoreGenerationUrl",
17445            "description": "Create a Keystore Generation URL",
17446            "args": [],
17447            "type": {
17448              "kind": "NON_NULL",
17449              "name": null,
17450              "ofType": {
17451                "kind": "OBJECT",
17452                "name": "KeystoreGenerationUrl",
17453                "ofType": null
17454              }
17455            },
17456            "isDeprecated": false,
17457            "deprecationReason": null
17458          }
17459        ],
17460        "inputFields": null,
17461        "interfaces": [],
17462        "enumValues": null,
17463        "possibleTypes": null
17464      },
17465      {
17466        "kind": "OBJECT",
17467        "name": "LeaveAccountResult",
17468        "description": null,
17469        "fields": [
17470          {
17471            "name": "success",
17472            "description": null,
17473            "args": [],
17474            "type": {
17475              "kind": "NON_NULL",
17476              "name": null,
17477              "ofType": {
17478                "kind": "SCALAR",
17479                "name": "Boolean",
17480                "ofType": null
17481              }
17482            },
17483            "isDeprecated": false,
17484            "deprecationReason": null
17485          }
17486        ],
17487        "inputFields": null,
17488        "interfaces": [],
17489        "enumValues": null,
17490        "possibleTypes": null
17491      },
17492      {
17493        "kind": "ENUM",
17494        "name": "MailchimpAudience",
17495        "description": null,
17496        "fields": null,
17497        "inputFields": null,
17498        "interfaces": null,
17499        "enumValues": [
17500          {
17501            "name": "EXPO_DEVELOPERS",
17502            "description": null,
17503            "isDeprecated": false,
17504            "deprecationReason": null
17505          }
17506        ],
17507        "possibleTypes": null
17508      },
17509      {
17510        "kind": "ENUM",
17511        "name": "MailchimpTag",
17512        "description": null,
17513        "fields": null,
17514        "inputFields": null,
17515        "interfaces": null,
17516        "enumValues": [
17517          {
17518            "name": "DEV_CLIENT_USERS",
17519            "description": null,
17520            "isDeprecated": false,
17521            "deprecationReason": null
17522          },
17523          {
17524            "name": "EAS_MASTER_LIST",
17525            "description": null,
17526            "isDeprecated": false,
17527            "deprecationReason": null
17528          }
17529        ],
17530        "possibleTypes": null
17531      },
17532      {
17533        "kind": "OBJECT",
17534        "name": "MailchimpTagPayload",
17535        "description": null,
17536        "fields": [
17537          {
17538            "name": "id",
17539            "description": null,
17540            "args": [],
17541            "type": {
17542              "kind": "SCALAR",
17543              "name": "Int",
17544              "ofType": null
17545            },
17546            "isDeprecated": false,
17547            "deprecationReason": null
17548          },
17549          {
17550            "name": "name",
17551            "description": null,
17552            "args": [],
17553            "type": {
17554              "kind": "SCALAR",
17555              "name": "String",
17556              "ofType": null
17557            },
17558            "isDeprecated": false,
17559            "deprecationReason": null
17560          }
17561        ],
17562        "inputFields": null,
17563        "interfaces": [],
17564        "enumValues": null,
17565        "possibleTypes": null
17566      },
17567      {
17568        "kind": "OBJECT",
17569        "name": "MeMutation",
17570        "description": null,
17571        "fields": [
17572          {
17573            "name": "addSecondFactorDevice",
17574            "description": "Add an additional second factor device",
17575            "args": [
17576              {
17577                "name": "deviceConfiguration",
17578                "description": null,
17579                "type": {
17580                  "kind": "NON_NULL",
17581                  "name": null,
17582                  "ofType": {
17583                    "kind": "INPUT_OBJECT",
17584                    "name": "SecondFactorDeviceConfiguration",
17585                    "ofType": null
17586                  }
17587                },
17588                "defaultValue": null,
17589                "isDeprecated": false,
17590                "deprecationReason": null
17591              },
17592              {
17593                "name": "otp",
17594                "description": null,
17595                "type": {
17596                  "kind": "NON_NULL",
17597                  "name": null,
17598                  "ofType": {
17599                    "kind": "SCALAR",
17600                    "name": "String",
17601                    "ofType": null
17602                  }
17603                },
17604                "defaultValue": null,
17605                "isDeprecated": false,
17606                "deprecationReason": null
17607              }
17608            ],
17609            "type": {
17610              "kind": "NON_NULL",
17611              "name": null,
17612              "ofType": {
17613                "kind": "OBJECT",
17614                "name": "SecondFactorDeviceConfigurationResult",
17615                "ofType": null
17616              }
17617            },
17618            "isDeprecated": false,
17619            "deprecationReason": null
17620          },
17621          {
17622            "name": "certifySecondFactorDevice",
17623            "description": "Certify an initiated second factor authentication method for the current user",
17624            "args": [
17625              {
17626                "name": "otp",
17627                "description": null,
17628                "type": {
17629                  "kind": "NON_NULL",
17630                  "name": null,
17631                  "ofType": {
17632                    "kind": "SCALAR",
17633                    "name": "String",
17634                    "ofType": null
17635                  }
17636                },
17637                "defaultValue": null,
17638                "isDeprecated": false,
17639                "deprecationReason": null
17640              }
17641            ],
17642            "type": {
17643              "kind": "NON_NULL",
17644              "name": null,
17645              "ofType": {
17646                "kind": "OBJECT",
17647                "name": "SecondFactorBooleanResult",
17648                "ofType": null
17649              }
17650            },
17651            "isDeprecated": false,
17652            "deprecationReason": null
17653          },
17654          {
17655            "name": "createAccount",
17656            "description": "Create a new Account and grant this User the owner Role",
17657            "args": [
17658              {
17659                "name": "accountData",
17660                "description": null,
17661                "type": {
17662                  "kind": "NON_NULL",
17663                  "name": null,
17664                  "ofType": {
17665                    "kind": "INPUT_OBJECT",
17666                    "name": "AccountDataInput",
17667                    "ofType": null
17668                  }
17669                },
17670                "defaultValue": null,
17671                "isDeprecated": false,
17672                "deprecationReason": null
17673              }
17674            ],
17675            "type": {
17676              "kind": "NON_NULL",
17677              "name": null,
17678              "ofType": {
17679                "kind": "OBJECT",
17680                "name": "Account",
17681                "ofType": null
17682              }
17683            },
17684            "isDeprecated": false,
17685            "deprecationReason": null
17686          },
17687          {
17688            "name": "deleteAccount",
17689            "description": "Delete an Account created via createAccount",
17690            "args": [
17691              {
17692                "name": "accountId",
17693                "description": null,
17694                "type": {
17695                  "kind": "NON_NULL",
17696                  "name": null,
17697                  "ofType": {
17698                    "kind": "SCALAR",
17699                    "name": "ID",
17700                    "ofType": null
17701                  }
17702                },
17703                "defaultValue": null,
17704                "isDeprecated": false,
17705                "deprecationReason": null
17706              }
17707            ],
17708            "type": {
17709              "kind": "NON_NULL",
17710              "name": null,
17711              "ofType": {
17712                "kind": "OBJECT",
17713                "name": "DeleteAccountResult",
17714                "ofType": null
17715              }
17716            },
17717            "isDeprecated": false,
17718            "deprecationReason": null
17719          },
17720          {
17721            "name": "deleteSecondFactorDevice",
17722            "description": "Delete a second factor device",
17723            "args": [
17724              {
17725                "name": "otp",
17726                "description": null,
17727                "type": {
17728                  "kind": "NON_NULL",
17729                  "name": null,
17730                  "ofType": {
17731                    "kind": "SCALAR",
17732                    "name": "String",
17733                    "ofType": null
17734                  }
17735                },
17736                "defaultValue": null,
17737                "isDeprecated": false,
17738                "deprecationReason": null
17739              },
17740              {
17741                "name": "userSecondFactorDeviceId",
17742                "description": null,
17743                "type": {
17744                  "kind": "NON_NULL",
17745                  "name": null,
17746                  "ofType": {
17747                    "kind": "SCALAR",
17748                    "name": "ID",
17749                    "ofType": null
17750                  }
17751                },
17752                "defaultValue": null,
17753                "isDeprecated": false,
17754                "deprecationReason": null
17755              }
17756            ],
17757            "type": {
17758              "kind": "NON_NULL",
17759              "name": null,
17760              "ofType": {
17761                "kind": "OBJECT",
17762                "name": "SecondFactorBooleanResult",
17763                "ofType": null
17764              }
17765            },
17766            "isDeprecated": false,
17767            "deprecationReason": null
17768          },
17769          {
17770            "name": "deleteSnack",
17771            "description": "Delete a Snack that the current user owns",
17772            "args": [
17773              {
17774                "name": "snackId",
17775                "description": null,
17776                "type": {
17777                  "kind": "NON_NULL",
17778                  "name": null,
17779                  "ofType": {
17780                    "kind": "SCALAR",
17781                    "name": "ID",
17782                    "ofType": null
17783                  }
17784                },
17785                "defaultValue": null,
17786                "isDeprecated": false,
17787                "deprecationReason": null
17788              }
17789            ],
17790            "type": {
17791              "kind": "NON_NULL",
17792              "name": null,
17793              "ofType": {
17794                "kind": "OBJECT",
17795                "name": "Snack",
17796                "ofType": null
17797              }
17798            },
17799            "isDeprecated": false,
17800            "deprecationReason": null
17801          },
17802          {
17803            "name": "disableSecondFactorAuthentication",
17804            "description": "Disable all second factor authentication for the current user",
17805            "args": [
17806              {
17807                "name": "otp",
17808                "description": null,
17809                "type": {
17810                  "kind": "NON_NULL",
17811                  "name": null,
17812                  "ofType": {
17813                    "kind": "SCALAR",
17814                    "name": "String",
17815                    "ofType": null
17816                  }
17817                },
17818                "defaultValue": null,
17819                "isDeprecated": false,
17820                "deprecationReason": null
17821              }
17822            ],
17823            "type": {
17824              "kind": "NON_NULL",
17825              "name": null,
17826              "ofType": {
17827                "kind": "OBJECT",
17828                "name": "SecondFactorBooleanResult",
17829                "ofType": null
17830              }
17831            },
17832            "isDeprecated": false,
17833            "deprecationReason": null
17834          },
17835          {
17836            "name": "initiateSecondFactorAuthentication",
17837            "description": "Initiate setup of two-factor authentication for the current user",
17838            "args": [
17839              {
17840                "name": "deviceConfigurations",
17841                "description": null,
17842                "type": {
17843                  "kind": "NON_NULL",
17844                  "name": null,
17845                  "ofType": {
17846                    "kind": "LIST",
17847                    "name": null,
17848                    "ofType": {
17849                      "kind": "NON_NULL",
17850                      "name": null,
17851                      "ofType": {
17852                        "kind": "INPUT_OBJECT",
17853                        "name": "SecondFactorDeviceConfiguration",
17854                        "ofType": null
17855                      }
17856                    }
17857                  }
17858                },
17859                "defaultValue": null,
17860                "isDeprecated": false,
17861                "deprecationReason": null
17862              },
17863              {
17864                "name": "recaptchaResponseToken",
17865                "description": null,
17866                "type": {
17867                  "kind": "SCALAR",
17868                  "name": "String",
17869                  "ofType": null
17870                },
17871                "defaultValue": null,
17872                "isDeprecated": false,
17873                "deprecationReason": null
17874              }
17875            ],
17876            "type": {
17877              "kind": "NON_NULL",
17878              "name": null,
17879              "ofType": {
17880                "kind": "OBJECT",
17881                "name": "SecondFactorInitiationResult",
17882                "ofType": null
17883              }
17884            },
17885            "isDeprecated": false,
17886            "deprecationReason": null
17887          },
17888          {
17889            "name": "leaveAccount",
17890            "description": "Leave an Account (revoke own permissions on Account)",
17891            "args": [
17892              {
17893                "name": "accountId",
17894                "description": null,
17895                "type": {
17896                  "kind": "NON_NULL",
17897                  "name": null,
17898                  "ofType": {
17899                    "kind": "SCALAR",
17900                    "name": "ID",
17901                    "ofType": null
17902                  }
17903                },
17904                "defaultValue": null,
17905                "isDeprecated": false,
17906                "deprecationReason": null
17907              }
17908            ],
17909            "type": {
17910              "kind": "NON_NULL",
17911              "name": null,
17912              "ofType": {
17913                "kind": "OBJECT",
17914                "name": "LeaveAccountResult",
17915                "ofType": null
17916              }
17917            },
17918            "isDeprecated": false,
17919            "deprecationReason": null
17920          },
17921          {
17922            "name": "purgeUnfinishedSecondFactorAuthentication",
17923            "description": "Purge unfinished two-factor authentication setup for the current user if not fully-set-up",
17924            "args": [],
17925            "type": {
17926              "kind": "NON_NULL",
17927              "name": null,
17928              "ofType": {
17929                "kind": "OBJECT",
17930                "name": "SecondFactorBooleanResult",
17931                "ofType": null
17932              }
17933            },
17934            "isDeprecated": false,
17935            "deprecationReason": null
17936          },
17937          {
17938            "name": "regenerateSecondFactorBackupCodes",
17939            "description": "Regenerate backup codes for the current user",
17940            "args": [
17941              {
17942                "name": "otp",
17943                "description": null,
17944                "type": {
17945                  "kind": "NON_NULL",
17946                  "name": null,
17947                  "ofType": {
17948                    "kind": "SCALAR",
17949                    "name": "String",
17950                    "ofType": null
17951                  }
17952                },
17953                "defaultValue": null,
17954                "isDeprecated": false,
17955                "deprecationReason": null
17956              }
17957            ],
17958            "type": {
17959              "kind": "NON_NULL",
17960              "name": null,
17961              "ofType": {
17962                "kind": "OBJECT",
17963                "name": "SecondFactorRegenerateBackupCodesResult",
17964                "ofType": null
17965              }
17966            },
17967            "isDeprecated": false,
17968            "deprecationReason": null
17969          },
17970          {
17971            "name": "sendSMSOTPToSecondFactorDevice",
17972            "description": "Send SMS OTP to a second factor device for use during device setup or during change confirmation",
17973            "args": [
17974              {
17975                "name": "userSecondFactorDeviceId",
17976                "description": null,
17977                "type": {
17978                  "kind": "NON_NULL",
17979                  "name": null,
17980                  "ofType": {
17981                    "kind": "SCALAR",
17982                    "name": "ID",
17983                    "ofType": null
17984                  }
17985                },
17986                "defaultValue": null,
17987                "isDeprecated": false,
17988                "deprecationReason": null
17989              }
17990            ],
17991            "type": {
17992              "kind": "NON_NULL",
17993              "name": null,
17994              "ofType": {
17995                "kind": "OBJECT",
17996                "name": "SecondFactorBooleanResult",
17997                "ofType": null
17998              }
17999            },
18000            "isDeprecated": false,
18001            "deprecationReason": null
18002          },
18003          {
18004            "name": "setPrimarySecondFactorDevice",
18005            "description": "Set the user's primary second factor device",
18006            "args": [
18007              {
18008                "name": "userSecondFactorDeviceId",
18009                "description": null,
18010                "type": {
18011                  "kind": "NON_NULL",
18012                  "name": null,
18013                  "ofType": {
18014                    "kind": "SCALAR",
18015                    "name": "ID",
18016                    "ofType": null
18017                  }
18018                },
18019                "defaultValue": null,
18020                "isDeprecated": false,
18021                "deprecationReason": null
18022              }
18023            ],
18024            "type": {
18025              "kind": "NON_NULL",
18026              "name": null,
18027              "ofType": {
18028                "kind": "OBJECT",
18029                "name": "SecondFactorBooleanResult",
18030                "ofType": null
18031              }
18032            },
18033            "isDeprecated": false,
18034            "deprecationReason": null
18035          },
18036          {
18037            "name": "transferApp",
18038            "description": "Transfer project to a different Account",
18039            "args": [
18040              {
18041                "name": "appId",
18042                "description": null,
18043                "type": {
18044                  "kind": "NON_NULL",
18045                  "name": null,
18046                  "ofType": {
18047                    "kind": "SCALAR",
18048                    "name": "ID",
18049                    "ofType": null
18050                  }
18051                },
18052                "defaultValue": null,
18053                "isDeprecated": false,
18054                "deprecationReason": null
18055              },
18056              {
18057                "name": "destinationAccountId",
18058                "description": null,
18059                "type": {
18060                  "kind": "NON_NULL",
18061                  "name": null,
18062                  "ofType": {
18063                    "kind": "SCALAR",
18064                    "name": "ID",
18065                    "ofType": null
18066                  }
18067                },
18068                "defaultValue": null,
18069                "isDeprecated": false,
18070                "deprecationReason": null
18071              }
18072            ],
18073            "type": {
18074              "kind": "NON_NULL",
18075              "name": null,
18076              "ofType": {
18077                "kind": "OBJECT",
18078                "name": "App",
18079                "ofType": null
18080              }
18081            },
18082            "isDeprecated": false,
18083            "deprecationReason": null
18084          },
18085          {
18086            "name": "unpublishApp",
18087            "description": "Unpublish an App that the current user owns",
18088            "args": [
18089              {
18090                "name": "appId",
18091                "description": null,
18092                "type": {
18093                  "kind": "NON_NULL",
18094                  "name": null,
18095                  "ofType": {
18096                    "kind": "SCALAR",
18097                    "name": "ID",
18098                    "ofType": null
18099                  }
18100                },
18101                "defaultValue": null,
18102                "isDeprecated": false,
18103                "deprecationReason": null
18104              }
18105            ],
18106            "type": {
18107              "kind": "NON_NULL",
18108              "name": null,
18109              "ofType": {
18110                "kind": "OBJECT",
18111                "name": "App",
18112                "ofType": null
18113              }
18114            },
18115            "isDeprecated": false,
18116            "deprecationReason": null
18117          },
18118          {
18119            "name": "updateApp",
18120            "description": "Update an App that the current user owns",
18121            "args": [
18122              {
18123                "name": "appData",
18124                "description": null,
18125                "type": {
18126                  "kind": "NON_NULL",
18127                  "name": null,
18128                  "ofType": {
18129                    "kind": "INPUT_OBJECT",
18130                    "name": "AppDataInput",
18131                    "ofType": null
18132                  }
18133                },
18134                "defaultValue": null,
18135                "isDeprecated": false,
18136                "deprecationReason": null
18137              }
18138            ],
18139            "type": {
18140              "kind": "NON_NULL",
18141              "name": null,
18142              "ofType": {
18143                "kind": "OBJECT",
18144                "name": "App",
18145                "ofType": null
18146              }
18147            },
18148            "isDeprecated": false,
18149            "deprecationReason": null
18150          },
18151          {
18152            "name": "updateProfile",
18153            "description": "Update the current user's data",
18154            "args": [
18155              {
18156                "name": "userData",
18157                "description": null,
18158                "type": {
18159                  "kind": "NON_NULL",
18160                  "name": null,
18161                  "ofType": {
18162                    "kind": "INPUT_OBJECT",
18163                    "name": "UserDataInput",
18164                    "ofType": null
18165                  }
18166                },
18167                "defaultValue": null,
18168                "isDeprecated": false,
18169                "deprecationReason": null
18170              }
18171            ],
18172            "type": {
18173              "kind": "NON_NULL",
18174              "name": null,
18175              "ofType": {
18176                "kind": "OBJECT",
18177                "name": "User",
18178                "ofType": null
18179              }
18180            },
18181            "isDeprecated": false,
18182            "deprecationReason": null
18183          }
18184        ],
18185        "inputFields": null,
18186        "interfaces": [],
18187        "enumValues": null,
18188        "possibleTypes": null
18189      },
18190      {
18191        "kind": "OBJECT",
18192        "name": "Offer",
18193        "description": null,
18194        "fields": [
18195          {
18196            "name": "features",
18197            "description": null,
18198            "args": [],
18199            "type": {
18200              "kind": "LIST",
18201              "name": null,
18202              "ofType": {
18203                "kind": "ENUM",
18204                "name": "Feature",
18205                "ofType": null
18206              }
18207            },
18208            "isDeprecated": false,
18209            "deprecationReason": null
18210          },
18211          {
18212            "name": "id",
18213            "description": null,
18214            "args": [],
18215            "type": {
18216              "kind": "NON_NULL",
18217              "name": null,
18218              "ofType": {
18219                "kind": "SCALAR",
18220                "name": "ID",
18221                "ofType": null
18222              }
18223            },
18224            "isDeprecated": false,
18225            "deprecationReason": null
18226          },
18227          {
18228            "name": "prerequisite",
18229            "description": null,
18230            "args": [],
18231            "type": {
18232              "kind": "OBJECT",
18233              "name": "OfferPrerequisite",
18234              "ofType": null
18235            },
18236            "isDeprecated": false,
18237            "deprecationReason": null
18238          },
18239          {
18240            "name": "price",
18241            "description": null,
18242            "args": [],
18243            "type": {
18244              "kind": "NON_NULL",
18245              "name": null,
18246              "ofType": {
18247                "kind": "SCALAR",
18248                "name": "Int",
18249                "ofType": null
18250              }
18251            },
18252            "isDeprecated": false,
18253            "deprecationReason": null
18254          },
18255          {
18256            "name": "quantity",
18257            "description": null,
18258            "args": [],
18259            "type": {
18260              "kind": "SCALAR",
18261              "name": "Int",
18262              "ofType": null
18263            },
18264            "isDeprecated": false,
18265            "deprecationReason": null
18266          },
18267          {
18268            "name": "stripeId",
18269            "description": null,
18270            "args": [],
18271            "type": {
18272              "kind": "NON_NULL",
18273              "name": null,
18274              "ofType": {
18275                "kind": "SCALAR",
18276                "name": "ID",
18277                "ofType": null
18278              }
18279            },
18280            "isDeprecated": false,
18281            "deprecationReason": null
18282          },
18283          {
18284            "name": "trialLength",
18285            "description": null,
18286            "args": [],
18287            "type": {
18288              "kind": "SCALAR",
18289              "name": "Int",
18290              "ofType": null
18291            },
18292            "isDeprecated": false,
18293            "deprecationReason": null
18294          },
18295          {
18296            "name": "type",
18297            "description": null,
18298            "args": [],
18299            "type": {
18300              "kind": "NON_NULL",
18301              "name": null,
18302              "ofType": {
18303                "kind": "ENUM",
18304                "name": "OfferType",
18305                "ofType": null
18306              }
18307            },
18308            "isDeprecated": false,
18309            "deprecationReason": null
18310          }
18311        ],
18312        "inputFields": null,
18313        "interfaces": [],
18314        "enumValues": null,
18315        "possibleTypes": null
18316      },
18317      {
18318        "kind": "OBJECT",
18319        "name": "OfferPrerequisite",
18320        "description": null,
18321        "fields": [
18322          {
18323            "name": "stripeIds",
18324            "description": null,
18325            "args": [],
18326            "type": {
18327              "kind": "NON_NULL",
18328              "name": null,
18329              "ofType": {
18330                "kind": "LIST",
18331                "name": null,
18332                "ofType": {
18333                  "kind": "NON_NULL",
18334                  "name": null,
18335                  "ofType": {
18336                    "kind": "SCALAR",
18337                    "name": "String",
18338                    "ofType": null
18339                  }
18340                }
18341              }
18342            },
18343            "isDeprecated": false,
18344            "deprecationReason": null
18345          },
18346          {
18347            "name": "type",
18348            "description": null,
18349            "args": [],
18350            "type": {
18351              "kind": "NON_NULL",
18352              "name": null,
18353              "ofType": {
18354                "kind": "SCALAR",
18355                "name": "String",
18356                "ofType": null
18357              }
18358            },
18359            "isDeprecated": false,
18360            "deprecationReason": null
18361          }
18362        ],
18363        "inputFields": null,
18364        "interfaces": [],
18365        "enumValues": null,
18366        "possibleTypes": null
18367      },
18368      {
18369        "kind": "ENUM",
18370        "name": "OfferType",
18371        "description": null,
18372        "fields": null,
18373        "inputFields": null,
18374        "interfaces": null,
18375        "enumValues": [
18376          {
18377            "name": "ADDON",
18378            "description": "Addon, or supplementary subscription",
18379            "isDeprecated": false,
18380            "deprecationReason": null
18381          },
18382          {
18383            "name": "PREPAID",
18384            "description": "Advanced Purchase of Paid Resource",
18385            "isDeprecated": false,
18386            "deprecationReason": null
18387          },
18388          {
18389            "name": "SUBSCRIPTION",
18390            "description": "Term subscription",
18391            "isDeprecated": false,
18392            "deprecationReason": null
18393          }
18394        ],
18395        "possibleTypes": null
18396      },
18397      {
18398        "kind": "ENUM",
18399        "name": "Order",
18400        "description": null,
18401        "fields": null,
18402        "inputFields": null,
18403        "interfaces": null,
18404        "enumValues": [
18405          {
18406            "name": "ASC",
18407            "description": null,
18408            "isDeprecated": false,
18409            "deprecationReason": null
18410          },
18411          {
18412            "name": "DESC",
18413            "description": null,
18414            "isDeprecated": false,
18415            "deprecationReason": null
18416          }
18417        ],
18418        "possibleTypes": null
18419      },
18420      {
18421        "kind": "INPUT_OBJECT",
18422        "name": "PartialManifest",
18423        "description": null,
18424        "fields": null,
18425        "inputFields": [
18426          {
18427            "name": "assets",
18428            "description": null,
18429            "type": {
18430              "kind": "NON_NULL",
18431              "name": null,
18432              "ofType": {
18433                "kind": "LIST",
18434                "name": null,
18435                "ofType": {
18436                  "kind": "INPUT_OBJECT",
18437                  "name": "PartialManifestAsset",
18438                  "ofType": null
18439                }
18440              }
18441            },
18442            "defaultValue": null,
18443            "isDeprecated": false,
18444            "deprecationReason": null
18445          },
18446          {
18447            "name": "extra",
18448            "description": null,
18449            "type": {
18450              "kind": "SCALAR",
18451              "name": "JSONObject",
18452              "ofType": null
18453            },
18454            "defaultValue": null,
18455            "isDeprecated": false,
18456            "deprecationReason": null
18457          },
18458          {
18459            "name": "launchAsset",
18460            "description": null,
18461            "type": {
18462              "kind": "NON_NULL",
18463              "name": null,
18464              "ofType": {
18465                "kind": "INPUT_OBJECT",
18466                "name": "PartialManifestAsset",
18467                "ofType": null
18468              }
18469            },
18470            "defaultValue": null,
18471            "isDeprecated": false,
18472            "deprecationReason": null
18473          }
18474        ],
18475        "interfaces": null,
18476        "enumValues": null,
18477        "possibleTypes": null
18478      },
18479      {
18480        "kind": "INPUT_OBJECT",
18481        "name": "PartialManifestAsset",
18482        "description": null,
18483        "fields": null,
18484        "inputFields": [
18485          {
18486            "name": "bundleKey",
18487            "description": null,
18488            "type": {
18489              "kind": "NON_NULL",
18490              "name": null,
18491              "ofType": {
18492                "kind": "SCALAR",
18493                "name": "String",
18494                "ofType": null
18495              }
18496            },
18497            "defaultValue": null,
18498            "isDeprecated": false,
18499            "deprecationReason": null
18500          },
18501          {
18502            "name": "contentType",
18503            "description": null,
18504            "type": {
18505              "kind": "NON_NULL",
18506              "name": null,
18507              "ofType": {
18508                "kind": "SCALAR",
18509                "name": "String",
18510                "ofType": null
18511              }
18512            },
18513            "defaultValue": null,
18514            "isDeprecated": false,
18515            "deprecationReason": null
18516          },
18517          {
18518            "name": "fileExtension",
18519            "description": null,
18520            "type": {
18521              "kind": "SCALAR",
18522              "name": "String",
18523              "ofType": null
18524            },
18525            "defaultValue": null,
18526            "isDeprecated": false,
18527            "deprecationReason": null
18528          },
18529          {
18530            "name": "fileSHA256",
18531            "description": null,
18532            "type": {
18533              "kind": "NON_NULL",
18534              "name": null,
18535              "ofType": {
18536                "kind": "SCALAR",
18537                "name": "String",
18538                "ofType": null
18539              }
18540            },
18541            "defaultValue": null,
18542            "isDeprecated": false,
18543            "deprecationReason": null
18544          },
18545          {
18546            "name": "storageKey",
18547            "description": null,
18548            "type": {
18549              "kind": "NON_NULL",
18550              "name": null,
18551              "ofType": {
18552                "kind": "SCALAR",
18553                "name": "String",
18554                "ofType": null
18555              }
18556            },
18557            "defaultValue": null,
18558            "isDeprecated": false,
18559            "deprecationReason": null
18560          }
18561        ],
18562        "interfaces": null,
18563        "enumValues": null,
18564        "possibleTypes": null
18565      },
18566      {
18567        "kind": "OBJECT",
18568        "name": "PaymentDetails",
18569        "description": null,
18570        "fields": [
18571          {
18572            "name": "address",
18573            "description": null,
18574            "args": [],
18575            "type": {
18576              "kind": "OBJECT",
18577              "name": "Address",
18578              "ofType": null
18579            },
18580            "isDeprecated": false,
18581            "deprecationReason": null
18582          },
18583          {
18584            "name": "card",
18585            "description": null,
18586            "args": [],
18587            "type": {
18588              "kind": "OBJECT",
18589              "name": "Card",
18590              "ofType": null
18591            },
18592            "isDeprecated": false,
18593            "deprecationReason": null
18594          },
18595          {
18596            "name": "id",
18597            "description": null,
18598            "args": [],
18599            "type": {
18600              "kind": "NON_NULL",
18601              "name": null,
18602              "ofType": {
18603                "kind": "SCALAR",
18604                "name": "ID",
18605                "ofType": null
18606              }
18607            },
18608            "isDeprecated": false,
18609            "deprecationReason": null
18610          }
18611        ],
18612        "inputFields": null,
18613        "interfaces": [],
18614        "enumValues": null,
18615        "possibleTypes": null
18616      },
18617      {
18618        "kind": "ENUM",
18619        "name": "Permission",
18620        "description": null,
18621        "fields": null,
18622        "inputFields": null,
18623        "interfaces": null,
18624        "enumValues": [
18625          {
18626            "name": "ADMIN",
18627            "description": null,
18628            "isDeprecated": false,
18629            "deprecationReason": null
18630          },
18631          {
18632            "name": "OWN",
18633            "description": null,
18634            "isDeprecated": false,
18635            "deprecationReason": null
18636          },
18637          {
18638            "name": "PUBLISH",
18639            "description": null,
18640            "isDeprecated": false,
18641            "deprecationReason": null
18642          },
18643          {
18644            "name": "VIEW",
18645            "description": null,
18646            "isDeprecated": false,
18647            "deprecationReason": null
18648          }
18649        ],
18650        "possibleTypes": null
18651      },
18652      {
18653        "kind": "INTERFACE",
18654        "name": "Project",
18655        "description": null,
18656        "fields": [
18657          {
18658            "name": "description",
18659            "description": null,
18660            "args": [],
18661            "type": {
18662              "kind": "NON_NULL",
18663              "name": null,
18664              "ofType": {
18665                "kind": "SCALAR",
18666                "name": "String",
18667                "ofType": null
18668              }
18669            },
18670            "isDeprecated": false,
18671            "deprecationReason": null
18672          },
18673          {
18674            "name": "fullName",
18675            "description": null,
18676            "args": [],
18677            "type": {
18678              "kind": "NON_NULL",
18679              "name": null,
18680              "ofType": {
18681                "kind": "SCALAR",
18682                "name": "String",
18683                "ofType": null
18684              }
18685            },
18686            "isDeprecated": false,
18687            "deprecationReason": null
18688          },
18689          {
18690            "name": "iconUrl",
18691            "description": null,
18692            "args": [],
18693            "type": {
18694              "kind": "SCALAR",
18695              "name": "String",
18696              "ofType": null
18697            },
18698            "isDeprecated": true,
18699            "deprecationReason": "No longer supported"
18700          },
18701          {
18702            "name": "id",
18703            "description": null,
18704            "args": [],
18705            "type": {
18706              "kind": "NON_NULL",
18707              "name": null,
18708              "ofType": {
18709                "kind": "SCALAR",
18710                "name": "ID",
18711                "ofType": null
18712              }
18713            },
18714            "isDeprecated": false,
18715            "deprecationReason": null
18716          },
18717          {
18718            "name": "name",
18719            "description": null,
18720            "args": [],
18721            "type": {
18722              "kind": "NON_NULL",
18723              "name": null,
18724              "ofType": {
18725                "kind": "SCALAR",
18726                "name": "String",
18727                "ofType": null
18728              }
18729            },
18730            "isDeprecated": false,
18731            "deprecationReason": null
18732          },
18733          {
18734            "name": "published",
18735            "description": null,
18736            "args": [],
18737            "type": {
18738              "kind": "NON_NULL",
18739              "name": null,
18740              "ofType": {
18741                "kind": "SCALAR",
18742                "name": "Boolean",
18743                "ofType": null
18744              }
18745            },
18746            "isDeprecated": false,
18747            "deprecationReason": null
18748          },
18749          {
18750            "name": "slug",
18751            "description": null,
18752            "args": [],
18753            "type": {
18754              "kind": "NON_NULL",
18755              "name": null,
18756              "ofType": {
18757                "kind": "SCALAR",
18758                "name": "String",
18759                "ofType": null
18760              }
18761            },
18762            "isDeprecated": false,
18763            "deprecationReason": null
18764          },
18765          {
18766            "name": "updated",
18767            "description": null,
18768            "args": [],
18769            "type": {
18770              "kind": "NON_NULL",
18771              "name": null,
18772              "ofType": {
18773                "kind": "SCALAR",
18774                "name": "DateTime",
18775                "ofType": null
18776              }
18777            },
18778            "isDeprecated": false,
18779            "deprecationReason": null
18780          },
18781          {
18782            "name": "username",
18783            "description": null,
18784            "args": [],
18785            "type": {
18786              "kind": "NON_NULL",
18787              "name": null,
18788              "ofType": {
18789                "kind": "SCALAR",
18790                "name": "String",
18791                "ofType": null
18792              }
18793            },
18794            "isDeprecated": false,
18795            "deprecationReason": null
18796          }
18797        ],
18798        "inputFields": null,
18799        "interfaces": [],
18800        "enumValues": null,
18801        "possibleTypes": [
18802          {
18803            "kind": "OBJECT",
18804            "name": "App",
18805            "ofType": null
18806          },
18807          {
18808            "kind": "OBJECT",
18809            "name": "Snack",
18810            "ofType": null
18811          }
18812        ]
18813      },
18814      {
18815        "kind": "INPUT_OBJECT",
18816        "name": "ProjectArchiveSourceInput",
18817        "description": null,
18818        "fields": null,
18819        "inputFields": [
18820          {
18821            "name": "bucketKey",
18822            "description": null,
18823            "type": {
18824              "kind": "SCALAR",
18825              "name": "String",
18826              "ofType": null
18827            },
18828            "defaultValue": null,
18829            "isDeprecated": false,
18830            "deprecationReason": null
18831          },
18832          {
18833            "name": "type",
18834            "description": null,
18835            "type": {
18836              "kind": "NON_NULL",
18837              "name": null,
18838              "ofType": {
18839                "kind": "ENUM",
18840                "name": "ProjectArchiveSourceType",
18841                "ofType": null
18842              }
18843            },
18844            "defaultValue": null,
18845            "isDeprecated": false,
18846            "deprecationReason": null
18847          },
18848          {
18849            "name": "url",
18850            "description": null,
18851            "type": {
18852              "kind": "SCALAR",
18853              "name": "String",
18854              "ofType": null
18855            },
18856            "defaultValue": null,
18857            "isDeprecated": false,
18858            "deprecationReason": null
18859          }
18860        ],
18861        "interfaces": null,
18862        "enumValues": null,
18863        "possibleTypes": null
18864      },
18865      {
18866        "kind": "ENUM",
18867        "name": "ProjectArchiveSourceType",
18868        "description": null,
18869        "fields": null,
18870        "inputFields": null,
18871        "interfaces": null,
18872        "enumValues": [
18873          {
18874            "name": "S3",
18875            "description": null,
18876            "isDeprecated": false,
18877            "deprecationReason": null
18878          },
18879          {
18880            "name": "URL",
18881            "description": null,
18882            "isDeprecated": false,
18883            "deprecationReason": null
18884          }
18885        ],
18886        "possibleTypes": null
18887      },
18888      {
18889        "kind": "OBJECT",
18890        "name": "ProjectPublicData",
18891        "description": null,
18892        "fields": [
18893          {
18894            "name": "fullName",
18895            "description": null,
18896            "args": [],
18897            "type": {
18898              "kind": "NON_NULL",
18899              "name": null,
18900              "ofType": {
18901                "kind": "SCALAR",
18902                "name": "String",
18903                "ofType": null
18904              }
18905            },
18906            "isDeprecated": false,
18907            "deprecationReason": null
18908          },
18909          {
18910            "name": "id",
18911            "description": null,
18912            "args": [],
18913            "type": {
18914              "kind": "NON_NULL",
18915              "name": null,
18916              "ofType": {
18917                "kind": "SCALAR",
18918                "name": "ID",
18919                "ofType": null
18920              }
18921            },
18922            "isDeprecated": false,
18923            "deprecationReason": null
18924          }
18925        ],
18926        "inputFields": null,
18927        "interfaces": [],
18928        "enumValues": null,
18929        "possibleTypes": null
18930      },
18931      {
18932        "kind": "OBJECT",
18933        "name": "ProjectQuery",
18934        "description": null,
18935        "fields": [
18936          {
18937            "name": "byAccountNameAndSlug",
18938            "description": null,
18939            "args": [
18940              {
18941                "name": "accountName",
18942                "description": null,
18943                "type": {
18944                  "kind": "NON_NULL",
18945                  "name": null,
18946                  "ofType": {
18947                    "kind": "SCALAR",
18948                    "name": "String",
18949                    "ofType": null
18950                  }
18951                },
18952                "defaultValue": null,
18953                "isDeprecated": false,
18954                "deprecationReason": null
18955              },
18956              {
18957                "name": "platform",
18958                "description": null,
18959                "type": {
18960                  "kind": "ENUM",
18961                  "name": "AppPlatform",
18962                  "ofType": null
18963                },
18964                "defaultValue": null,
18965                "isDeprecated": false,
18966                "deprecationReason": null
18967              },
18968              {
18969                "name": "sdkVersions",
18970                "description": null,
18971                "type": {
18972                  "kind": "LIST",
18973                  "name": null,
18974                  "ofType": {
18975                    "kind": "SCALAR",
18976                    "name": "String",
18977                    "ofType": null
18978                  }
18979                },
18980                "defaultValue": null,
18981                "isDeprecated": false,
18982                "deprecationReason": null
18983              },
18984              {
18985                "name": "slug",
18986                "description": null,
18987                "type": {
18988                  "kind": "NON_NULL",
18989                  "name": null,
18990                  "ofType": {
18991                    "kind": "SCALAR",
18992                    "name": "String",
18993                    "ofType": null
18994                  }
18995                },
18996                "defaultValue": null,
18997                "isDeprecated": false,
18998                "deprecationReason": null
18999              }
19000            ],
19001            "type": {
19002              "kind": "NON_NULL",
19003              "name": null,
19004              "ofType": {
19005                "kind": "INTERFACE",
19006                "name": "Project",
19007                "ofType": null
19008              }
19009            },
19010            "isDeprecated": false,
19011            "deprecationReason": null
19012          },
19013          {
19014            "name": "byPaths",
19015            "description": null,
19016            "args": [
19017              {
19018                "name": "paths",
19019                "description": null,
19020                "type": {
19021                  "kind": "LIST",
19022                  "name": null,
19023                  "ofType": {
19024                    "kind": "SCALAR",
19025                    "name": "String",
19026                    "ofType": null
19027                  }
19028                },
19029                "defaultValue": null,
19030                "isDeprecated": false,
19031                "deprecationReason": null
19032              }
19033            ],
19034            "type": {
19035              "kind": "NON_NULL",
19036              "name": null,
19037              "ofType": {
19038                "kind": "LIST",
19039                "name": null,
19040                "ofType": {
19041                  "kind": "INTERFACE",
19042                  "name": "Project",
19043                  "ofType": null
19044                }
19045              }
19046            },
19047            "isDeprecated": true,
19048            "deprecationReason": "No longer supported"
19049          },
19050          {
19051            "name": "byUsernameAndSlug",
19052            "description": null,
19053            "args": [
19054              {
19055                "name": "platform",
19056                "description": null,
19057                "type": {
19058                  "kind": "SCALAR",
19059                  "name": "String",
19060                  "ofType": null
19061                },
19062                "defaultValue": null,
19063                "isDeprecated": false,
19064                "deprecationReason": null
19065              },
19066              {
19067                "name": "sdkVersions",
19068                "description": null,
19069                "type": {
19070                  "kind": "LIST",
19071                  "name": null,
19072                  "ofType": {
19073                    "kind": "SCALAR",
19074                    "name": "String",
19075                    "ofType": null
19076                  }
19077                },
19078                "defaultValue": null,
19079                "isDeprecated": false,
19080                "deprecationReason": null
19081              },
19082              {
19083                "name": "slug",
19084                "description": null,
19085                "type": {
19086                  "kind": "NON_NULL",
19087                  "name": null,
19088                  "ofType": {
19089                    "kind": "SCALAR",
19090                    "name": "String",
19091                    "ofType": null
19092                  }
19093                },
19094                "defaultValue": null,
19095                "isDeprecated": false,
19096                "deprecationReason": null
19097              },
19098              {
19099                "name": "username",
19100                "description": null,
19101                "type": {
19102                  "kind": "NON_NULL",
19103                  "name": null,
19104                  "ofType": {
19105                    "kind": "SCALAR",
19106                    "name": "String",
19107                    "ofType": null
19108                  }
19109                },
19110                "defaultValue": null,
19111                "isDeprecated": false,
19112                "deprecationReason": null
19113              }
19114            ],
19115            "type": {
19116              "kind": "NON_NULL",
19117              "name": null,
19118              "ofType": {
19119                "kind": "INTERFACE",
19120                "name": "Project",
19121                "ofType": null
19122              }
19123            },
19124            "isDeprecated": true,
19125            "deprecationReason": "See byAccountNameAndSlug"
19126          }
19127        ],
19128        "inputFields": null,
19129        "interfaces": [],
19130        "enumValues": null,
19131        "possibleTypes": null
19132      },
19133      {
19134        "kind": "OBJECT",
19135        "name": "PublicArtifacts",
19136        "description": null,
19137        "fields": [
19138          {
19139            "name": "buildUrl",
19140            "description": null,
19141            "args": [],
19142            "type": {
19143              "kind": "SCALAR",
19144              "name": "String",
19145              "ofType": null
19146            },
19147            "isDeprecated": false,
19148            "deprecationReason": null
19149          }
19150        ],
19151        "inputFields": null,
19152        "interfaces": [],
19153        "enumValues": null,
19154        "possibleTypes": null
19155      },
19156      {
19157        "kind": "INPUT_OBJECT",
19158        "name": "PublishUpdateGroupInput",
19159        "description": null,
19160        "fields": null,
19161        "inputFields": [
19162          {
19163            "name": "awaitingCodeSigningInfo",
19164            "description": null,
19165            "type": {
19166              "kind": "SCALAR",
19167              "name": "Boolean",
19168              "ofType": null
19169            },
19170            "defaultValue": null,
19171            "isDeprecated": false,
19172            "deprecationReason": null
19173          },
19174          {
19175            "name": "branchId",
19176            "description": null,
19177            "type": {
19178              "kind": "NON_NULL",
19179              "name": null,
19180              "ofType": {
19181                "kind": "SCALAR",
19182                "name": "String",
19183                "ofType": null
19184              }
19185            },
19186            "defaultValue": null,
19187            "isDeprecated": false,
19188            "deprecationReason": null
19189          },
19190          {
19191            "name": "message",
19192            "description": null,
19193            "type": {
19194              "kind": "SCALAR",
19195              "name": "String",
19196              "ofType": null
19197            },
19198            "defaultValue": null,
19199            "isDeprecated": false,
19200            "deprecationReason": null
19201          },
19202          {
19203            "name": "runtimeVersion",
19204            "description": null,
19205            "type": {
19206              "kind": "NON_NULL",
19207              "name": null,
19208              "ofType": {
19209                "kind": "SCALAR",
19210                "name": "String",
19211                "ofType": null
19212              }
19213            },
19214            "defaultValue": null,
19215            "isDeprecated": false,
19216            "deprecationReason": null
19217          },
19218          {
19219            "name": "updateInfoGroup",
19220            "description": null,
19221            "type": {
19222              "kind": "NON_NULL",
19223              "name": null,
19224              "ofType": {
19225                "kind": "INPUT_OBJECT",
19226                "name": "UpdateInfoGroup",
19227                "ofType": null
19228              }
19229            },
19230            "defaultValue": null,
19231            "isDeprecated": false,
19232            "deprecationReason": null
19233          }
19234        ],
19235        "interfaces": null,
19236        "enumValues": null,
19237        "possibleTypes": null
19238      },
19239      {
19240        "kind": "OBJECT",
19241        "name": "RescindUserInvitationResult",
19242        "description": null,
19243        "fields": [
19244          {
19245            "name": "id",
19246            "description": null,
19247            "args": [],
19248            "type": {
19249              "kind": "NON_NULL",
19250              "name": null,
19251              "ofType": {
19252                "kind": "SCALAR",
19253                "name": "ID",
19254                "ofType": null
19255              }
19256            },
19257            "isDeprecated": false,
19258            "deprecationReason": null
19259          }
19260        ],
19261        "inputFields": null,
19262        "interfaces": [],
19263        "enumValues": null,
19264        "possibleTypes": null
19265      },
19266      {
19267        "kind": "OBJECT",
19268        "name": "Robot",
19269        "description": "Represents a robot (not human) actor.",
19270        "fields": [
19271          {
19272            "name": "accessTokens",
19273            "description": "Access Tokens belonging to this actor",
19274            "args": [],
19275            "type": {
19276              "kind": "NON_NULL",
19277              "name": null,
19278              "ofType": {
19279                "kind": "LIST",
19280                "name": null,
19281                "ofType": {
19282                  "kind": "NON_NULL",
19283                  "name": null,
19284                  "ofType": {
19285                    "kind": "OBJECT",
19286                    "name": "AccessToken",
19287                    "ofType": null
19288                  }
19289                }
19290              }
19291            },
19292            "isDeprecated": false,
19293            "deprecationReason": null
19294          },
19295          {
19296            "name": "accounts",
19297            "description": "Associated accounts",
19298            "args": [],
19299            "type": {
19300              "kind": "NON_NULL",
19301              "name": null,
19302              "ofType": {
19303                "kind": "LIST",
19304                "name": null,
19305                "ofType": {
19306                  "kind": "NON_NULL",
19307                  "name": null,
19308                  "ofType": {
19309                    "kind": "OBJECT",
19310                    "name": "Account",
19311                    "ofType": null
19312                  }
19313                }
19314              }
19315            },
19316            "isDeprecated": false,
19317            "deprecationReason": null
19318          },
19319          {
19320            "name": "created",
19321            "description": null,
19322            "args": [],
19323            "type": {
19324              "kind": "NON_NULL",
19325              "name": null,
19326              "ofType": {
19327                "kind": "SCALAR",
19328                "name": "DateTime",
19329                "ofType": null
19330              }
19331            },
19332            "isDeprecated": false,
19333            "deprecationReason": null
19334          },
19335          {
19336            "name": "displayName",
19337            "description": null,
19338            "args": [],
19339            "type": {
19340              "kind": "NON_NULL",
19341              "name": null,
19342              "ofType": {
19343                "kind": "SCALAR",
19344                "name": "String",
19345                "ofType": null
19346              }
19347            },
19348            "isDeprecated": false,
19349            "deprecationReason": null
19350          },
19351          {
19352            "name": "featureGates",
19353            "description": "Server feature gate values for this actor, optionally filtering by desired gates.\nOnly resolves for the viewer.",
19354            "args": [
19355              {
19356                "name": "filter",
19357                "description": null,
19358                "type": {
19359                  "kind": "LIST",
19360                  "name": null,
19361                  "ofType": {
19362                    "kind": "NON_NULL",
19363                    "name": null,
19364                    "ofType": {
19365                      "kind": "SCALAR",
19366                      "name": "String",
19367                      "ofType": null
19368                    }
19369                  }
19370                },
19371                "defaultValue": null,
19372                "isDeprecated": false,
19373                "deprecationReason": null
19374              }
19375            ],
19376            "type": {
19377              "kind": "NON_NULL",
19378              "name": null,
19379              "ofType": {
19380                "kind": "SCALAR",
19381                "name": "JSONObject",
19382                "ofType": null
19383              }
19384            },
19385            "isDeprecated": false,
19386            "deprecationReason": null
19387          },
19388          {
19389            "name": "firstName",
19390            "description": null,
19391            "args": [],
19392            "type": {
19393              "kind": "SCALAR",
19394              "name": "String",
19395              "ofType": null
19396            },
19397            "isDeprecated": false,
19398            "deprecationReason": null
19399          },
19400          {
19401            "name": "id",
19402            "description": null,
19403            "args": [],
19404            "type": {
19405              "kind": "NON_NULL",
19406              "name": null,
19407              "ofType": {
19408                "kind": "SCALAR",
19409                "name": "ID",
19410                "ofType": null
19411              }
19412            },
19413            "isDeprecated": false,
19414            "deprecationReason": null
19415          },
19416          {
19417            "name": "isExpoAdmin",
19418            "description": null,
19419            "args": [],
19420            "type": {
19421              "kind": "NON_NULL",
19422              "name": null,
19423              "ofType": {
19424                "kind": "SCALAR",
19425                "name": "Boolean",
19426                "ofType": null
19427              }
19428            },
19429            "isDeprecated": false,
19430            "deprecationReason": null
19431          }
19432        ],
19433        "inputFields": null,
19434        "interfaces": [
19435          {
19436            "kind": "INTERFACE",
19437            "name": "Actor",
19438            "ofType": null
19439          }
19440        ],
19441        "enumValues": null,
19442        "possibleTypes": null
19443      },
19444      {
19445        "kind": "INPUT_OBJECT",
19446        "name": "RobotDataInput",
19447        "description": null,
19448        "fields": null,
19449        "inputFields": [
19450          {
19451            "name": "name",
19452            "description": null,
19453            "type": {
19454              "kind": "SCALAR",
19455              "name": "String",
19456              "ofType": null
19457            },
19458            "defaultValue": null,
19459            "isDeprecated": false,
19460            "deprecationReason": null
19461          }
19462        ],
19463        "interfaces": null,
19464        "enumValues": null,
19465        "possibleTypes": null
19466      },
19467      {
19468        "kind": "OBJECT",
19469        "name": "RobotMutation",
19470        "description": null,
19471        "fields": [
19472          {
19473            "name": "createRobotForAccount",
19474            "description": "Create a Robot and grant it Permissions on an Account",
19475            "args": [
19476              {
19477                "name": "accountID",
19478                "description": null,
19479                "type": {
19480                  "kind": "NON_NULL",
19481                  "name": null,
19482                  "ofType": {
19483                    "kind": "SCALAR",
19484                    "name": "String",
19485                    "ofType": null
19486                  }
19487                },
19488                "defaultValue": null,
19489                "isDeprecated": false,
19490                "deprecationReason": null
19491              },
19492              {
19493                "name": "permissions",
19494                "description": null,
19495                "type": {
19496                  "kind": "NON_NULL",
19497                  "name": null,
19498                  "ofType": {
19499                    "kind": "LIST",
19500                    "name": null,
19501                    "ofType": {
19502                      "kind": "ENUM",
19503                      "name": "Permission",
19504                      "ofType": null
19505                    }
19506                  }
19507                },
19508                "defaultValue": null,
19509                "isDeprecated": false,
19510                "deprecationReason": null
19511              },
19512              {
19513                "name": "robotData",
19514                "description": null,
19515                "type": {
19516                  "kind": "INPUT_OBJECT",
19517                  "name": "RobotDataInput",
19518                  "ofType": null
19519                },
19520                "defaultValue": null,
19521                "isDeprecated": false,
19522                "deprecationReason": null
19523              }
19524            ],
19525            "type": {
19526              "kind": "NON_NULL",
19527              "name": null,
19528              "ofType": {
19529                "kind": "OBJECT",
19530                "name": "Robot",
19531                "ofType": null
19532              }
19533            },
19534            "isDeprecated": false,
19535            "deprecationReason": null
19536          },
19537          {
19538            "name": "deleteRobot",
19539            "description": "Delete a Robot",
19540            "args": [
19541              {
19542                "name": "id",
19543                "description": null,
19544                "type": {
19545                  "kind": "NON_NULL",
19546                  "name": null,
19547                  "ofType": {
19548                    "kind": "SCALAR",
19549                    "name": "String",
19550                    "ofType": null
19551                  }
19552                },
19553                "defaultValue": null,
19554                "isDeprecated": false,
19555                "deprecationReason": null
19556              }
19557            ],
19558            "type": {
19559              "kind": "NON_NULL",
19560              "name": null,
19561              "ofType": {
19562                "kind": "OBJECT",
19563                "name": "DeleteRobotResult",
19564                "ofType": null
19565              }
19566            },
19567            "isDeprecated": false,
19568            "deprecationReason": null
19569          },
19570          {
19571            "name": "updateRobot",
19572            "description": "Update a Robot",
19573            "args": [
19574              {
19575                "name": "id",
19576                "description": null,
19577                "type": {
19578                  "kind": "NON_NULL",
19579                  "name": null,
19580                  "ofType": {
19581                    "kind": "SCALAR",
19582                    "name": "String",
19583                    "ofType": null
19584                  }
19585                },
19586                "defaultValue": null,
19587                "isDeprecated": false,
19588                "deprecationReason": null
19589              },
19590              {
19591                "name": "robotData",
19592                "description": null,
19593                "type": {
19594                  "kind": "NON_NULL",
19595                  "name": null,
19596                  "ofType": {
19597                    "kind": "INPUT_OBJECT",
19598                    "name": "RobotDataInput",
19599                    "ofType": null
19600                  }
19601                },
19602                "defaultValue": null,
19603                "isDeprecated": false,
19604                "deprecationReason": null
19605              }
19606            ],
19607            "type": {
19608              "kind": "NON_NULL",
19609              "name": null,
19610              "ofType": {
19611                "kind": "OBJECT",
19612                "name": "Robot",
19613                "ofType": null
19614              }
19615            },
19616            "isDeprecated": false,
19617            "deprecationReason": null
19618          }
19619        ],
19620        "inputFields": null,
19621        "interfaces": [],
19622        "enumValues": null,
19623        "possibleTypes": null
19624      },
19625      {
19626        "kind": "ENUM",
19627        "name": "Role",
19628        "description": null,
19629        "fields": null,
19630        "inputFields": null,
19631        "interfaces": null,
19632        "enumValues": [
19633          {
19634            "name": "ADMIN",
19635            "description": null,
19636            "isDeprecated": false,
19637            "deprecationReason": null
19638          },
19639          {
19640            "name": "CUSTOM",
19641            "description": null,
19642            "isDeprecated": false,
19643            "deprecationReason": null
19644          },
19645          {
19646            "name": "DEVELOPER",
19647            "description": null,
19648            "isDeprecated": false,
19649            "deprecationReason": null
19650          },
19651          {
19652            "name": "HAS_ADMIN",
19653            "description": null,
19654            "isDeprecated": false,
19655            "deprecationReason": null
19656          },
19657          {
19658            "name": "NOT_ADMIN",
19659            "description": null,
19660            "isDeprecated": false,
19661            "deprecationReason": null
19662          },
19663          {
19664            "name": "OWNER",
19665            "description": null,
19666            "isDeprecated": false,
19667            "deprecationReason": null
19668          },
19669          {
19670            "name": "VIEW_ONLY",
19671            "description": null,
19672            "isDeprecated": false,
19673            "deprecationReason": null
19674          }
19675        ],
19676        "possibleTypes": null
19677      },
19678      {
19679        "kind": "OBJECT",
19680        "name": "RootMutation",
19681        "description": null,
19682        "fields": [
19683          {
19684            "name": "_doNotUse",
19685            "description": "This is a placeholder field",
19686            "args": [],
19687            "type": {
19688              "kind": "SCALAR",
19689              "name": "String",
19690              "ofType": null
19691            },
19692            "isDeprecated": true,
19693            "deprecationReason": "Not used."
19694          },
19695          {
19696            "name": "accessToken",
19697            "description": "Mutations that create, read, update, and delete AccessTokens for Actors",
19698            "args": [],
19699            "type": {
19700              "kind": "NON_NULL",
19701              "name": null,
19702              "ofType": {
19703                "kind": "OBJECT",
19704                "name": "AccessTokenMutation",
19705                "ofType": null
19706              }
19707            },
19708            "isDeprecated": false,
19709            "deprecationReason": null
19710          },
19711          {
19712            "name": "account",
19713            "description": "Mutations that modify an Account",
19714            "args": [
19715              {
19716                "name": "accountName",
19717                "description": null,
19718                "type": {
19719                  "kind": "NON_NULL",
19720                  "name": null,
19721                  "ofType": {
19722                    "kind": "SCALAR",
19723                    "name": "ID",
19724                    "ofType": null
19725                  }
19726                },
19727                "defaultValue": null,
19728                "isDeprecated": false,
19729                "deprecationReason": null
19730              }
19731            ],
19732            "type": {
19733              "kind": "NON_NULL",
19734              "name": null,
19735              "ofType": {
19736                "kind": "OBJECT",
19737                "name": "AccountMutation",
19738                "ofType": null
19739              }
19740            },
19741            "isDeprecated": false,
19742            "deprecationReason": null
19743          },
19744          {
19745            "name": "androidAppBuildCredentials",
19746            "description": "Mutations that modify the build credentials for an Android app",
19747            "args": [],
19748            "type": {
19749              "kind": "NON_NULL",
19750              "name": null,
19751              "ofType": {
19752                "kind": "OBJECT",
19753                "name": "AndroidAppBuildCredentialsMutation",
19754                "ofType": null
19755              }
19756            },
19757            "isDeprecated": false,
19758            "deprecationReason": null
19759          },
19760          {
19761            "name": "androidAppCredentials",
19762            "description": "Mutations that modify the credentials for an Android app",
19763            "args": [],
19764            "type": {
19765              "kind": "NON_NULL",
19766              "name": null,
19767              "ofType": {
19768                "kind": "OBJECT",
19769                "name": "AndroidAppCredentialsMutation",
19770                "ofType": null
19771              }
19772            },
19773            "isDeprecated": false,
19774            "deprecationReason": null
19775          },
19776          {
19777            "name": "androidFcm",
19778            "description": "Mutations that modify an FCM credential",
19779            "args": [],
19780            "type": {
19781              "kind": "NON_NULL",
19782              "name": null,
19783              "ofType": {
19784                "kind": "OBJECT",
19785                "name": "AndroidFcmMutation",
19786                "ofType": null
19787              }
19788            },
19789            "isDeprecated": false,
19790            "deprecationReason": null
19791          },
19792          {
19793            "name": "androidKeystore",
19794            "description": "Mutations that modify a Keystore",
19795            "args": [],
19796            "type": {
19797              "kind": "NON_NULL",
19798              "name": null,
19799              "ofType": {
19800                "kind": "OBJECT",
19801                "name": "AndroidKeystoreMutation",
19802                "ofType": null
19803              }
19804            },
19805            "isDeprecated": false,
19806            "deprecationReason": null
19807          },
19808          {
19809            "name": "app",
19810            "description": "Mutations that modify an App",
19811            "args": [
19812              {
19813                "name": "appId",
19814                "description": null,
19815                "type": {
19816                  "kind": "SCALAR",
19817                  "name": "ID",
19818                  "ofType": null
19819                },
19820                "defaultValue": null,
19821                "isDeprecated": false,
19822                "deprecationReason": null
19823              }
19824            ],
19825            "type": {
19826              "kind": "OBJECT",
19827              "name": "AppMutation",
19828              "ofType": null
19829            },
19830            "isDeprecated": false,
19831            "deprecationReason": null
19832          },
19833          {
19834            "name": "appStoreConnectApiKey",
19835            "description": "Mutations that modify an App Store Connect Api Key",
19836            "args": [],
19837            "type": {
19838              "kind": "NON_NULL",
19839              "name": null,
19840              "ofType": {
19841                "kind": "OBJECT",
19842                "name": "AppStoreConnectApiKeyMutation",
19843                "ofType": null
19844              }
19845            },
19846            "isDeprecated": false,
19847            "deprecationReason": null
19848          },
19849          {
19850            "name": "appleAppIdentifier",
19851            "description": "Mutations that modify an Identifier for an iOS App",
19852            "args": [],
19853            "type": {
19854              "kind": "NON_NULL",
19855              "name": null,
19856              "ofType": {
19857                "kind": "OBJECT",
19858                "name": "AppleAppIdentifierMutation",
19859                "ofType": null
19860              }
19861            },
19862            "isDeprecated": false,
19863            "deprecationReason": null
19864          },
19865          {
19866            "name": "appleDevice",
19867            "description": "Mutations that modify an Apple Device",
19868            "args": [],
19869            "type": {
19870              "kind": "NON_NULL",
19871              "name": null,
19872              "ofType": {
19873                "kind": "OBJECT",
19874                "name": "AppleDeviceMutation",
19875                "ofType": null
19876              }
19877            },
19878            "isDeprecated": false,
19879            "deprecationReason": null
19880          },
19881          {
19882            "name": "appleDeviceRegistrationRequest",
19883            "description": "Mutations that modify an Apple Device registration request",
19884            "args": [],
19885            "type": {
19886              "kind": "NON_NULL",
19887              "name": null,
19888              "ofType": {
19889                "kind": "OBJECT",
19890                "name": "AppleDeviceRegistrationRequestMutation",
19891                "ofType": null
19892              }
19893            },
19894            "isDeprecated": false,
19895            "deprecationReason": null
19896          },
19897          {
19898            "name": "appleDistributionCertificate",
19899            "description": "Mutations that modify a Distribution Certificate",
19900            "args": [],
19901            "type": {
19902              "kind": "NON_NULL",
19903              "name": null,
19904              "ofType": {
19905                "kind": "OBJECT",
19906                "name": "AppleDistributionCertificateMutation",
19907                "ofType": null
19908              }
19909            },
19910            "isDeprecated": false,
19911            "deprecationReason": null
19912          },
19913          {
19914            "name": "appleProvisioningProfile",
19915            "description": "Mutations that modify a Provisioning Profile",
19916            "args": [],
19917            "type": {
19918              "kind": "NON_NULL",
19919              "name": null,
19920              "ofType": {
19921                "kind": "OBJECT",
19922                "name": "AppleProvisioningProfileMutation",
19923                "ofType": null
19924              }
19925            },
19926            "isDeprecated": false,
19927            "deprecationReason": null
19928          },
19929          {
19930            "name": "applePushKey",
19931            "description": "Mutations that modify an Apple Push Notification key",
19932            "args": [],
19933            "type": {
19934              "kind": "NON_NULL",
19935              "name": null,
19936              "ofType": {
19937                "kind": "OBJECT",
19938                "name": "ApplePushKeyMutation",
19939                "ofType": null
19940              }
19941            },
19942            "isDeprecated": false,
19943            "deprecationReason": null
19944          },
19945          {
19946            "name": "appleTeam",
19947            "description": "Mutations that modify an Apple Team",
19948            "args": [],
19949            "type": {
19950              "kind": "NON_NULL",
19951              "name": null,
19952              "ofType": {
19953                "kind": "OBJECT",
19954                "name": "AppleTeamMutation",
19955                "ofType": null
19956              }
19957            },
19958            "isDeprecated": false,
19959            "deprecationReason": null
19960          },
19961          {
19962            "name": "asset",
19963            "description": null,
19964            "args": [],
19965            "type": {
19966              "kind": "NON_NULL",
19967              "name": null,
19968              "ofType": {
19969                "kind": "OBJECT",
19970                "name": "AssetMutation",
19971                "ofType": null
19972              }
19973            },
19974            "isDeprecated": false,
19975            "deprecationReason": null
19976          },
19977          {
19978            "name": "build",
19979            "description": "Mutations that modify an EAS Build",
19980            "args": [
19981              {
19982                "name": "buildId",
19983                "description": null,
19984                "type": {
19985                  "kind": "SCALAR",
19986                  "name": "ID",
19987                  "ofType": null
19988                },
19989                "defaultValue": null,
19990                "isDeprecated": false,
19991                "deprecationReason": null
19992              }
19993            ],
19994            "type": {
19995              "kind": "NON_NULL",
19996              "name": null,
19997              "ofType": {
19998                "kind": "OBJECT",
19999                "name": "BuildMutation",
20000                "ofType": null
20001              }
20002            },
20003            "isDeprecated": false,
20004            "deprecationReason": null
20005          },
20006          {
20007            "name": "buildJob",
20008            "description": "Mutations that modify an BuildJob",
20009            "args": [
20010              {
20011                "name": "buildId",
20012                "description": null,
20013                "type": {
20014                  "kind": "NON_NULL",
20015                  "name": null,
20016                  "ofType": {
20017                    "kind": "SCALAR",
20018                    "name": "ID",
20019                    "ofType": null
20020                  }
20021                },
20022                "defaultValue": null,
20023                "isDeprecated": false,
20024                "deprecationReason": null
20025              }
20026            ],
20027            "type": {
20028              "kind": "NON_NULL",
20029              "name": null,
20030              "ofType": {
20031                "kind": "OBJECT",
20032                "name": "BuildJobMutation",
20033                "ofType": null
20034              }
20035            },
20036            "isDeprecated": false,
20037            "deprecationReason": null
20038          },
20039          {
20040            "name": "emailSubscription",
20041            "description": "Mutations that modify an EmailSubscription",
20042            "args": [],
20043            "type": {
20044              "kind": "NON_NULL",
20045              "name": null,
20046              "ofType": {
20047                "kind": "OBJECT",
20048                "name": "EmailSubscriptionMutation",
20049                "ofType": null
20050              }
20051            },
20052            "isDeprecated": false,
20053            "deprecationReason": null
20054          },
20055          {
20056            "name": "environmentSecret",
20057            "description": "Mutations that create and delete EnvironmentSecrets",
20058            "args": [],
20059            "type": {
20060              "kind": "NON_NULL",
20061              "name": null,
20062              "ofType": {
20063                "kind": "OBJECT",
20064                "name": "EnvironmentSecretMutation",
20065                "ofType": null
20066              }
20067            },
20068            "isDeprecated": false,
20069            "deprecationReason": null
20070          },
20071          {
20072            "name": "googleServiceAccountKey",
20073            "description": "Mutations that modify a Google Service Account Key",
20074            "args": [],
20075            "type": {
20076              "kind": "NON_NULL",
20077              "name": null,
20078              "ofType": {
20079                "kind": "OBJECT",
20080                "name": "GoogleServiceAccountKeyMutation",
20081                "ofType": null
20082              }
20083            },
20084            "isDeprecated": false,
20085            "deprecationReason": null
20086          },
20087          {
20088            "name": "iosAppBuildCredentials",
20089            "description": "Mutations that modify the build credentials for an iOS app",
20090            "args": [],
20091            "type": {
20092              "kind": "NON_NULL",
20093              "name": null,
20094              "ofType": {
20095                "kind": "OBJECT",
20096                "name": "IosAppBuildCredentialsMutation",
20097                "ofType": null
20098              }
20099            },
20100            "isDeprecated": false,
20101            "deprecationReason": null
20102          },
20103          {
20104            "name": "iosAppCredentials",
20105            "description": "Mutations that modify the credentials for an iOS app",
20106            "args": [],
20107            "type": {
20108              "kind": "NON_NULL",
20109              "name": null,
20110              "ofType": {
20111                "kind": "OBJECT",
20112                "name": "IosAppCredentialsMutation",
20113                "ofType": null
20114              }
20115            },
20116            "isDeprecated": false,
20117            "deprecationReason": null
20118          },
20119          {
20120            "name": "keystoreGenerationUrl",
20121            "description": null,
20122            "args": [],
20123            "type": {
20124              "kind": "NON_NULL",
20125              "name": null,
20126              "ofType": {
20127                "kind": "OBJECT",
20128                "name": "KeystoreGenerationUrlMutation",
20129                "ofType": null
20130              }
20131            },
20132            "isDeprecated": false,
20133            "deprecationReason": null
20134          },
20135          {
20136            "name": "me",
20137            "description": "Mutations that modify the currently authenticated User",
20138            "args": [],
20139            "type": {
20140              "kind": "NON_NULL",
20141              "name": null,
20142              "ofType": {
20143                "kind": "OBJECT",
20144                "name": "MeMutation",
20145                "ofType": null
20146              }
20147            },
20148            "isDeprecated": false,
20149            "deprecationReason": null
20150          },
20151          {
20152            "name": "robot",
20153            "description": "Mutations that create, update, and delete Robots",
20154            "args": [],
20155            "type": {
20156              "kind": "NON_NULL",
20157              "name": null,
20158              "ofType": {
20159                "kind": "OBJECT",
20160                "name": "RobotMutation",
20161                "ofType": null
20162              }
20163            },
20164            "isDeprecated": false,
20165            "deprecationReason": null
20166          },
20167          {
20168            "name": "submission",
20169            "description": "Mutations that modify an EAS Submit submission",
20170            "args": [],
20171            "type": {
20172              "kind": "NON_NULL",
20173              "name": null,
20174              "ofType": {
20175                "kind": "OBJECT",
20176                "name": "SubmissionMutation",
20177                "ofType": null
20178              }
20179            },
20180            "isDeprecated": false,
20181            "deprecationReason": null
20182          },
20183          {
20184            "name": "update",
20185            "description": null,
20186            "args": [],
20187            "type": {
20188              "kind": "NON_NULL",
20189              "name": null,
20190              "ofType": {
20191                "kind": "OBJECT",
20192                "name": "UpdateMutation",
20193                "ofType": null
20194              }
20195            },
20196            "isDeprecated": false,
20197            "deprecationReason": null
20198          },
20199          {
20200            "name": "updateBranch",
20201            "description": null,
20202            "args": [],
20203            "type": {
20204              "kind": "NON_NULL",
20205              "name": null,
20206              "ofType": {
20207                "kind": "OBJECT",
20208                "name": "UpdateBranchMutation",
20209                "ofType": null
20210              }
20211            },
20212            "isDeprecated": false,
20213            "deprecationReason": null
20214          },
20215          {
20216            "name": "updateChannel",
20217            "description": null,
20218            "args": [],
20219            "type": {
20220              "kind": "NON_NULL",
20221              "name": null,
20222              "ofType": {
20223                "kind": "OBJECT",
20224                "name": "UpdateChannelMutation",
20225                "ofType": null
20226              }
20227            },
20228            "isDeprecated": false,
20229            "deprecationReason": null
20230          },
20231          {
20232            "name": "uploadSession",
20233            "description": null,
20234            "args": [],
20235            "type": {
20236              "kind": "NON_NULL",
20237              "name": null,
20238              "ofType": {
20239                "kind": "OBJECT",
20240                "name": "UploadSession",
20241                "ofType": null
20242              }
20243            },
20244            "isDeprecated": false,
20245            "deprecationReason": null
20246          },
20247          {
20248            "name": "userInvitation",
20249            "description": "Mutations that create, delete, and accept UserInvitations",
20250            "args": [],
20251            "type": {
20252              "kind": "NON_NULL",
20253              "name": null,
20254              "ofType": {
20255                "kind": "OBJECT",
20256                "name": "UserInvitationMutation",
20257                "ofType": null
20258              }
20259            },
20260            "isDeprecated": false,
20261            "deprecationReason": null
20262          },
20263          {
20264            "name": "webhook",
20265            "description": "Mutations that create, delete, update Webhooks",
20266            "args": [],
20267            "type": {
20268              "kind": "NON_NULL",
20269              "name": null,
20270              "ofType": {
20271                "kind": "OBJECT",
20272                "name": "WebhookMutation",
20273                "ofType": null
20274              }
20275            },
20276            "isDeprecated": false,
20277            "deprecationReason": null
20278          }
20279        ],
20280        "inputFields": null,
20281        "interfaces": [],
20282        "enumValues": null,
20283        "possibleTypes": null
20284      },
20285      {
20286        "kind": "OBJECT",
20287        "name": "RootQuery",
20288        "description": null,
20289        "fields": [
20290          {
20291            "name": "_doNotUse",
20292            "description": "This is a placeholder field",
20293            "args": [],
20294            "type": {
20295              "kind": "SCALAR",
20296              "name": "String",
20297              "ofType": null
20298            },
20299            "isDeprecated": true,
20300            "deprecationReason": "Not used."
20301          },
20302          {
20303            "name": "account",
20304            "description": "Top-level query object for querying Accounts.",
20305            "args": [],
20306            "type": {
20307              "kind": "NON_NULL",
20308              "name": null,
20309              "ofType": {
20310                "kind": "OBJECT",
20311                "name": "AccountQuery",
20312                "ofType": null
20313              }
20314            },
20315            "isDeprecated": false,
20316            "deprecationReason": null
20317          },
20318          {
20319            "name": "actor",
20320            "description": "Top-level query object for querying Actors.",
20321            "args": [],
20322            "type": {
20323              "kind": "NON_NULL",
20324              "name": null,
20325              "ofType": {
20326                "kind": "OBJECT",
20327                "name": "ActorQuery",
20328                "ofType": null
20329              }
20330            },
20331            "isDeprecated": false,
20332            "deprecationReason": null
20333          },
20334          {
20335            "name": "allPublicApps",
20336            "description": "Public apps in the app directory",
20337            "args": [
20338              {
20339                "name": "filter",
20340                "description": "Filter to use to filter public app list",
20341                "type": {
20342                  "kind": "NON_NULL",
20343                  "name": null,
20344                  "ofType": {
20345                    "kind": "ENUM",
20346                    "name": "AppsFilter",
20347                    "ofType": null
20348                  }
20349                },
20350                "defaultValue": null,
20351                "isDeprecated": false,
20352                "deprecationReason": null
20353              },
20354              {
20355                "name": "limit",
20356                "description": null,
20357                "type": {
20358                  "kind": "SCALAR",
20359                  "name": "Int",
20360                  "ofType": null
20361                },
20362                "defaultValue": null,
20363                "isDeprecated": false,
20364                "deprecationReason": null
20365              },
20366              {
20367                "name": "offset",
20368                "description": null,
20369                "type": {
20370                  "kind": "SCALAR",
20371                  "name": "Int",
20372                  "ofType": null
20373                },
20374                "defaultValue": null,
20375                "isDeprecated": false,
20376                "deprecationReason": null
20377              },
20378              {
20379                "name": "sort",
20380                "description": "Method to sort by",
20381                "type": {
20382                  "kind": "NON_NULL",
20383                  "name": null,
20384                  "ofType": {
20385                    "kind": "ENUM",
20386                    "name": "AppSort",
20387                    "ofType": null
20388                  }
20389                },
20390                "defaultValue": null,
20391                "isDeprecated": false,
20392                "deprecationReason": null
20393              }
20394            ],
20395            "type": {
20396              "kind": "LIST",
20397              "name": null,
20398              "ofType": {
20399                "kind": "OBJECT",
20400                "name": "App",
20401                "ofType": null
20402              }
20403            },
20404            "isDeprecated": true,
20405            "deprecationReason": "Use 'all' field under 'app'."
20406          },
20407          {
20408            "name": "app",
20409            "description": null,
20410            "args": [],
20411            "type": {
20412              "kind": "NON_NULL",
20413              "name": null,
20414              "ofType": {
20415                "kind": "OBJECT",
20416                "name": "AppQuery",
20417                "ofType": null
20418              }
20419            },
20420            "isDeprecated": false,
20421            "deprecationReason": null
20422          },
20423          {
20424            "name": "appByAppId",
20425            "description": "Look up app by app id",
20426            "args": [
20427              {
20428                "name": "appId",
20429                "description": null,
20430                "type": {
20431                  "kind": "NON_NULL",
20432                  "name": null,
20433                  "ofType": {
20434                    "kind": "SCALAR",
20435                    "name": "String",
20436                    "ofType": null
20437                  }
20438                },
20439                "defaultValue": null,
20440                "isDeprecated": false,
20441                "deprecationReason": null
20442              }
20443            ],
20444            "type": {
20445              "kind": "OBJECT",
20446              "name": "App",
20447              "ofType": null
20448            },
20449            "isDeprecated": true,
20450            "deprecationReason": "Use 'byId' field under 'app'."
20451          },
20452          {
20453            "name": "appleDeviceRegistrationRequest",
20454            "description": "Top-level query object for querying Apple Device registration requests.",
20455            "args": [],
20456            "type": {
20457              "kind": "NON_NULL",
20458              "name": null,
20459              "ofType": {
20460                "kind": "OBJECT",
20461                "name": "AppleDeviceRegistrationRequestQuery",
20462                "ofType": null
20463              }
20464            },
20465            "isDeprecated": false,
20466            "deprecationReason": null
20467          },
20468          {
20469            "name": "appleTeam",
20470            "description": "Top-level query object for querying Apple Teams.",
20471            "args": [],
20472            "type": {
20473              "kind": "NON_NULL",
20474              "name": null,
20475              "ofType": {
20476                "kind": "OBJECT",
20477                "name": "AppleTeamQuery",
20478                "ofType": null
20479              }
20480            },
20481            "isDeprecated": false,
20482            "deprecationReason": null
20483          },
20484          {
20485            "name": "asset",
20486            "description": null,
20487            "args": [],
20488            "type": {
20489              "kind": "NON_NULL",
20490              "name": null,
20491              "ofType": {
20492                "kind": "OBJECT",
20493                "name": "AssetQuery",
20494                "ofType": null
20495              }
20496            },
20497            "isDeprecated": false,
20498            "deprecationReason": null
20499          },
20500          {
20501            "name": "buildJobs",
20502            "description": null,
20503            "args": [],
20504            "type": {
20505              "kind": "NON_NULL",
20506              "name": null,
20507              "ofType": {
20508                "kind": "OBJECT",
20509                "name": "BuildJobQuery",
20510                "ofType": null
20511              }
20512            },
20513            "isDeprecated": false,
20514            "deprecationReason": null
20515          },
20516          {
20517            "name": "buildPublicData",
20518            "description": "Top-level query object for querying BuildPublicData publicly.",
20519            "args": [],
20520            "type": {
20521              "kind": "NON_NULL",
20522              "name": null,
20523              "ofType": {
20524                "kind": "OBJECT",
20525                "name": "BuildPublicDataQuery",
20526                "ofType": null
20527              }
20528            },
20529            "isDeprecated": false,
20530            "deprecationReason": null
20531          },
20532          {
20533            "name": "builds",
20534            "description": null,
20535            "args": [],
20536            "type": {
20537              "kind": "NON_NULL",
20538              "name": null,
20539              "ofType": {
20540                "kind": "OBJECT",
20541                "name": "BuildQuery",
20542                "ofType": null
20543              }
20544            },
20545            "isDeprecated": false,
20546            "deprecationReason": null
20547          },
20548          {
20549            "name": "clientBuilds",
20550            "description": null,
20551            "args": [],
20552            "type": {
20553              "kind": "NON_NULL",
20554              "name": null,
20555              "ofType": {
20556                "kind": "OBJECT",
20557                "name": "ClientBuildQuery",
20558                "ofType": null
20559              }
20560            },
20561            "isDeprecated": false,
20562            "deprecationReason": null
20563          },
20564          {
20565            "name": "experimentation",
20566            "description": "Top-level query object for querying Experimentation configuration.",
20567            "args": [],
20568            "type": {
20569              "kind": "NON_NULL",
20570              "name": null,
20571              "ofType": {
20572                "kind": "OBJECT",
20573                "name": "ExperimentationQuery",
20574                "ofType": null
20575              }
20576            },
20577            "isDeprecated": false,
20578            "deprecationReason": null
20579          },
20580          {
20581            "name": "invoice",
20582            "description": "Top-level query object for querying Stripe Invoices.",
20583            "args": [],
20584            "type": {
20585              "kind": "NON_NULL",
20586              "name": null,
20587              "ofType": {
20588                "kind": "OBJECT",
20589                "name": "InvoiceQuery",
20590                "ofType": null
20591              }
20592            },
20593            "isDeprecated": false,
20594            "deprecationReason": null
20595          },
20596          {
20597            "name": "me",
20598            "description": "If authenticated as a typical end user, this is the appropriate top-level\nquery object",
20599            "args": [],
20600            "type": {
20601              "kind": "OBJECT",
20602              "name": "User",
20603              "ofType": null
20604            },
20605            "isDeprecated": false,
20606            "deprecationReason": null
20607          },
20608          {
20609            "name": "meActor",
20610            "description": "If authenticated as a any type of Actor, this is the appropriate top-level\nquery object",
20611            "args": [],
20612            "type": {
20613              "kind": "INTERFACE",
20614              "name": "Actor",
20615              "ofType": null
20616            },
20617            "isDeprecated": false,
20618            "deprecationReason": null
20619          },
20620          {
20621            "name": "project",
20622            "description": null,
20623            "args": [],
20624            "type": {
20625              "kind": "NON_NULL",
20626              "name": null,
20627              "ofType": {
20628                "kind": "OBJECT",
20629                "name": "ProjectQuery",
20630                "ofType": null
20631              }
20632            },
20633            "isDeprecated": false,
20634            "deprecationReason": null
20635          },
20636          {
20637            "name": "snack",
20638            "description": null,
20639            "args": [],
20640            "type": {
20641              "kind": "NON_NULL",
20642              "name": null,
20643              "ofType": {
20644                "kind": "OBJECT",
20645                "name": "SnackQuery",
20646                "ofType": null
20647              }
20648            },
20649            "isDeprecated": false,
20650            "deprecationReason": null
20651          },
20652          {
20653            "name": "submissions",
20654            "description": null,
20655            "args": [],
20656            "type": {
20657              "kind": "NON_NULL",
20658              "name": null,
20659              "ofType": {
20660                "kind": "OBJECT",
20661                "name": "SubmissionQuery",
20662                "ofType": null
20663              }
20664            },
20665            "isDeprecated": false,
20666            "deprecationReason": null
20667          },
20668          {
20669            "name": "updatesByGroup",
20670            "description": "fetch all updates in a group",
20671            "args": [
20672              {
20673                "name": "group",
20674                "description": null,
20675                "type": {
20676                  "kind": "NON_NULL",
20677                  "name": null,
20678                  "ofType": {
20679                    "kind": "SCALAR",
20680                    "name": "ID",
20681                    "ofType": null
20682                  }
20683                },
20684                "defaultValue": null,
20685                "isDeprecated": false,
20686                "deprecationReason": null
20687              }
20688            ],
20689            "type": {
20690              "kind": "NON_NULL",
20691              "name": null,
20692              "ofType": {
20693                "kind": "LIST",
20694                "name": null,
20695                "ofType": {
20696                  "kind": "NON_NULL",
20697                  "name": null,
20698                  "ofType": {
20699                    "kind": "OBJECT",
20700                    "name": "Update",
20701                    "ofType": null
20702                  }
20703                }
20704              }
20705            },
20706            "isDeprecated": false,
20707            "deprecationReason": null
20708          },
20709          {
20710            "name": "user",
20711            "description": "Top-level query object for querying Users.",
20712            "args": [],
20713            "type": {
20714              "kind": "NON_NULL",
20715              "name": null,
20716              "ofType": {
20717                "kind": "OBJECT",
20718                "name": "UserQuery",
20719                "ofType": null
20720              }
20721            },
20722            "isDeprecated": false,
20723            "deprecationReason": null
20724          },
20725          {
20726            "name": "userByUserId",
20727            "description": null,
20728            "args": [
20729              {
20730                "name": "userId",
20731                "description": null,
20732                "type": {
20733                  "kind": "NON_NULL",
20734                  "name": null,
20735                  "ofType": {
20736                    "kind": "SCALAR",
20737                    "name": "String",
20738                    "ofType": null
20739                  }
20740                },
20741                "defaultValue": null,
20742                "isDeprecated": false,
20743                "deprecationReason": null
20744              }
20745            ],
20746            "type": {
20747              "kind": "OBJECT",
20748              "name": "User",
20749              "ofType": null
20750            },
20751            "isDeprecated": true,
20752            "deprecationReason": "Use 'byId' field under 'user'."
20753          },
20754          {
20755            "name": "userByUsername",
20756            "description": null,
20757            "args": [
20758              {
20759                "name": "username",
20760                "description": null,
20761                "type": {
20762                  "kind": "NON_NULL",
20763                  "name": null,
20764                  "ofType": {
20765                    "kind": "SCALAR",
20766                    "name": "String",
20767                    "ofType": null
20768                  }
20769                },
20770                "defaultValue": null,
20771                "isDeprecated": false,
20772                "deprecationReason": null
20773              }
20774            ],
20775            "type": {
20776              "kind": "OBJECT",
20777              "name": "User",
20778              "ofType": null
20779            },
20780            "isDeprecated": true,
20781            "deprecationReason": "Use 'byUsername' field under 'user'."
20782          },
20783          {
20784            "name": "userInvitationPublicData",
20785            "description": "Top-level query object for querying UserInvitationPublicData publicly.",
20786            "args": [],
20787            "type": {
20788              "kind": "NON_NULL",
20789              "name": null,
20790              "ofType": {
20791                "kind": "OBJECT",
20792                "name": "UserInvitationPublicDataQuery",
20793                "ofType": null
20794              }
20795            },
20796            "isDeprecated": false,
20797            "deprecationReason": null
20798          },
20799          {
20800            "name": "viewer",
20801            "description": "If authenticated as a typical end user, this is the appropriate top-level\nquery object",
20802            "args": [],
20803            "type": {
20804              "kind": "OBJECT",
20805              "name": "User",
20806              "ofType": null
20807            },
20808            "isDeprecated": false,
20809            "deprecationReason": null
20810          },
20811          {
20812            "name": "webhook",
20813            "description": "Top-level query object for querying Webhooks.",
20814            "args": [],
20815            "type": {
20816              "kind": "NON_NULL",
20817              "name": null,
20818              "ofType": {
20819                "kind": "OBJECT",
20820                "name": "WebhookQuery",
20821                "ofType": null
20822              }
20823            },
20824            "isDeprecated": false,
20825            "deprecationReason": null
20826          }
20827        ],
20828        "inputFields": null,
20829        "interfaces": [],
20830        "enumValues": null,
20831        "possibleTypes": null
20832      },
20833      {
20834        "kind": "OBJECT",
20835        "name": "SecondFactorBooleanResult",
20836        "description": null,
20837        "fields": [
20838          {
20839            "name": "success",
20840            "description": null,
20841            "args": [],
20842            "type": {
20843              "kind": "NON_NULL",
20844              "name": null,
20845              "ofType": {
20846                "kind": "SCALAR",
20847                "name": "Boolean",
20848                "ofType": null
20849              }
20850            },
20851            "isDeprecated": false,
20852            "deprecationReason": null
20853          }
20854        ],
20855        "inputFields": null,
20856        "interfaces": [],
20857        "enumValues": null,
20858        "possibleTypes": null
20859      },
20860      {
20861        "kind": "INPUT_OBJECT",
20862        "name": "SecondFactorDeviceConfiguration",
20863        "description": null,
20864        "fields": null,
20865        "inputFields": [
20866          {
20867            "name": "isPrimary",
20868            "description": null,
20869            "type": {
20870              "kind": "NON_NULL",
20871              "name": null,
20872              "ofType": {
20873                "kind": "SCALAR",
20874                "name": "Boolean",
20875                "ofType": null
20876              }
20877            },
20878            "defaultValue": null,
20879            "isDeprecated": false,
20880            "deprecationReason": null
20881          },
20882          {
20883            "name": "method",
20884            "description": null,
20885            "type": {
20886              "kind": "NON_NULL",
20887              "name": null,
20888              "ofType": {
20889                "kind": "ENUM",
20890                "name": "SecondFactorMethod",
20891                "ofType": null
20892              }
20893            },
20894            "defaultValue": null,
20895            "isDeprecated": false,
20896            "deprecationReason": null
20897          },
20898          {
20899            "name": "name",
20900            "description": null,
20901            "type": {
20902              "kind": "NON_NULL",
20903              "name": null,
20904              "ofType": {
20905                "kind": "SCALAR",
20906                "name": "String",
20907                "ofType": null
20908              }
20909            },
20910            "defaultValue": null,
20911            "isDeprecated": false,
20912            "deprecationReason": null
20913          },
20914          {
20915            "name": "smsPhoneNumber",
20916            "description": null,
20917            "type": {
20918              "kind": "SCALAR",
20919              "name": "String",
20920              "ofType": null
20921            },
20922            "defaultValue": null,
20923            "isDeprecated": false,
20924            "deprecationReason": null
20925          }
20926        ],
20927        "interfaces": null,
20928        "enumValues": null,
20929        "possibleTypes": null
20930      },
20931      {
20932        "kind": "OBJECT",
20933        "name": "SecondFactorDeviceConfigurationResult",
20934        "description": null,
20935        "fields": [
20936          {
20937            "name": "keyURI",
20938            "description": null,
20939            "args": [],
20940            "type": {
20941              "kind": "NON_NULL",
20942              "name": null,
20943              "ofType": {
20944                "kind": "SCALAR",
20945                "name": "String",
20946                "ofType": null
20947              }
20948            },
20949            "isDeprecated": false,
20950            "deprecationReason": null
20951          },
20952          {
20953            "name": "secondFactorDevice",
20954            "description": null,
20955            "args": [],
20956            "type": {
20957              "kind": "NON_NULL",
20958              "name": null,
20959              "ofType": {
20960                "kind": "OBJECT",
20961                "name": "UserSecondFactorDevice",
20962                "ofType": null
20963              }
20964            },
20965            "isDeprecated": false,
20966            "deprecationReason": null
20967          },
20968          {
20969            "name": "secret",
20970            "description": null,
20971            "args": [],
20972            "type": {
20973              "kind": "NON_NULL",
20974              "name": null,
20975              "ofType": {
20976                "kind": "SCALAR",
20977                "name": "String",
20978                "ofType": null
20979              }
20980            },
20981            "isDeprecated": false,
20982            "deprecationReason": null
20983          }
20984        ],
20985        "inputFields": null,
20986        "interfaces": [],
20987        "enumValues": null,
20988        "possibleTypes": null
20989      },
20990      {
20991        "kind": "OBJECT",
20992        "name": "SecondFactorInitiationResult",
20993        "description": null,
20994        "fields": [
20995          {
20996            "name": "configurationResults",
20997            "description": null,
20998            "args": [],
20999            "type": {
21000              "kind": "NON_NULL",
21001              "name": null,
21002              "ofType": {
21003                "kind": "LIST",
21004                "name": null,
21005                "ofType": {
21006                  "kind": "NON_NULL",
21007                  "name": null,
21008                  "ofType": {
21009                    "kind": "OBJECT",
21010                    "name": "SecondFactorDeviceConfigurationResult",
21011                    "ofType": null
21012                  }
21013                }
21014              }
21015            },
21016            "isDeprecated": false,
21017            "deprecationReason": null
21018          },
21019          {
21020            "name": "plaintextBackupCodes",
21021            "description": null,
21022            "args": [],
21023            "type": {
21024              "kind": "NON_NULL",
21025              "name": null,
21026              "ofType": {
21027                "kind": "LIST",
21028                "name": null,
21029                "ofType": {
21030                  "kind": "NON_NULL",
21031                  "name": null,
21032                  "ofType": {
21033                    "kind": "SCALAR",
21034                    "name": "String",
21035                    "ofType": null
21036                  }
21037                }
21038              }
21039            },
21040            "isDeprecated": false,
21041            "deprecationReason": null
21042          }
21043        ],
21044        "inputFields": null,
21045        "interfaces": [],
21046        "enumValues": null,
21047        "possibleTypes": null
21048      },
21049      {
21050        "kind": "ENUM",
21051        "name": "SecondFactorMethod",
21052        "description": null,
21053        "fields": null,
21054        "inputFields": null,
21055        "interfaces": null,
21056        "enumValues": [
21057          {
21058            "name": "AUTHENTICATOR",
21059            "description": "Google Authenticator (TOTP)",
21060            "isDeprecated": false,
21061            "deprecationReason": null
21062          },
21063          {
21064            "name": "SMS",
21065            "description": "SMS",
21066            "isDeprecated": false,
21067            "deprecationReason": null
21068          }
21069        ],
21070        "possibleTypes": null
21071      },
21072      {
21073        "kind": "OBJECT",
21074        "name": "SecondFactorRegenerateBackupCodesResult",
21075        "description": null,
21076        "fields": [
21077          {
21078            "name": "plaintextBackupCodes",
21079            "description": null,
21080            "args": [],
21081            "type": {
21082              "kind": "NON_NULL",
21083              "name": null,
21084              "ofType": {
21085                "kind": "LIST",
21086                "name": null,
21087                "ofType": {
21088                  "kind": "NON_NULL",
21089                  "name": null,
21090                  "ofType": {
21091                    "kind": "SCALAR",
21092                    "name": "String",
21093                    "ofType": null
21094                  }
21095                }
21096              }
21097            },
21098            "isDeprecated": false,
21099            "deprecationReason": null
21100          }
21101        ],
21102        "inputFields": null,
21103        "interfaces": [],
21104        "enumValues": null,
21105        "possibleTypes": null
21106      },
21107      {
21108        "kind": "OBJECT",
21109        "name": "Snack",
21110        "description": null,
21111        "fields": [
21112          {
21113            "name": "description",
21114            "description": "Description of the Snack",
21115            "args": [],
21116            "type": {
21117              "kind": "NON_NULL",
21118              "name": null,
21119              "ofType": {
21120                "kind": "SCALAR",
21121                "name": "String",
21122                "ofType": null
21123              }
21124            },
21125            "isDeprecated": false,
21126            "deprecationReason": null
21127          },
21128          {
21129            "name": "fullName",
21130            "description": "Full name of the Snack, e.g. \"@john/mysnack\", \"@snack/245631\"",
21131            "args": [],
21132            "type": {
21133              "kind": "NON_NULL",
21134              "name": null,
21135              "ofType": {
21136                "kind": "SCALAR",
21137                "name": "String",
21138                "ofType": null
21139              }
21140            },
21141            "isDeprecated": false,
21142            "deprecationReason": null
21143          },
21144          {
21145            "name": "hasBeenRunSuccessfully",
21146            "description": "Has the Snack been run without errors",
21147            "args": [],
21148            "type": {
21149              "kind": "SCALAR",
21150              "name": "Boolean",
21151              "ofType": null
21152            },
21153            "isDeprecated": false,
21154            "deprecationReason": null
21155          },
21156          {
21157            "name": "hashId",
21158            "description": null,
21159            "args": [],
21160            "type": {
21161              "kind": "NON_NULL",
21162              "name": null,
21163              "ofType": {
21164                "kind": "SCALAR",
21165                "name": "String",
21166                "ofType": null
21167              }
21168            },
21169            "isDeprecated": false,
21170            "deprecationReason": null
21171          },
21172          {
21173            "name": "iconUrl",
21174            "description": null,
21175            "args": [],
21176            "type": {
21177              "kind": "SCALAR",
21178              "name": "String",
21179              "ofType": null
21180            },
21181            "isDeprecated": true,
21182            "deprecationReason": "No longer supported"
21183          },
21184          {
21185            "name": "id",
21186            "description": null,
21187            "args": [],
21188            "type": {
21189              "kind": "NON_NULL",
21190              "name": null,
21191              "ofType": {
21192                "kind": "SCALAR",
21193                "name": "ID",
21194                "ofType": null
21195              }
21196            },
21197            "isDeprecated": false,
21198            "deprecationReason": null
21199          },
21200          {
21201            "name": "isDraft",
21202            "description": "Draft status, which is true when the Snack was not saved explicitly, but auto-saved",
21203            "args": [],
21204            "type": {
21205              "kind": "NON_NULL",
21206              "name": null,
21207              "ofType": {
21208                "kind": "SCALAR",
21209                "name": "Boolean",
21210                "ofType": null
21211              }
21212            },
21213            "isDeprecated": false,
21214            "deprecationReason": null
21215          },
21216          {
21217            "name": "name",
21218            "description": "Name of the Snack, e.g. \"My Snack\"",
21219            "args": [],
21220            "type": {
21221              "kind": "NON_NULL",
21222              "name": null,
21223              "ofType": {
21224                "kind": "SCALAR",
21225                "name": "String",
21226                "ofType": null
21227              }
21228            },
21229            "isDeprecated": false,
21230            "deprecationReason": null
21231          },
21232          {
21233            "name": "previewImage",
21234            "description": "Preview image of the running snack",
21235            "args": [],
21236            "type": {
21237              "kind": "SCALAR",
21238              "name": "String",
21239              "ofType": null
21240            },
21241            "isDeprecated": false,
21242            "deprecationReason": null
21243          },
21244          {
21245            "name": "published",
21246            "description": null,
21247            "args": [],
21248            "type": {
21249              "kind": "NON_NULL",
21250              "name": null,
21251              "ofType": {
21252                "kind": "SCALAR",
21253                "name": "Boolean",
21254                "ofType": null
21255              }
21256            },
21257            "isDeprecated": false,
21258            "deprecationReason": null
21259          },
21260          {
21261            "name": "slug",
21262            "description": "Slug name, e.g. \"mysnack\", \"245631\"",
21263            "args": [],
21264            "type": {
21265              "kind": "NON_NULL",
21266              "name": null,
21267              "ofType": {
21268                "kind": "SCALAR",
21269                "name": "String",
21270                "ofType": null
21271              }
21272            },
21273            "isDeprecated": false,
21274            "deprecationReason": null
21275          },
21276          {
21277            "name": "updated",
21278            "description": "Date and time the Snack was last updated",
21279            "args": [],
21280            "type": {
21281              "kind": "NON_NULL",
21282              "name": null,
21283              "ofType": {
21284                "kind": "SCALAR",
21285                "name": "DateTime",
21286                "ofType": null
21287              }
21288            },
21289            "isDeprecated": false,
21290            "deprecationReason": null
21291          },
21292          {
21293            "name": "username",
21294            "description": "Name of the user that created the Snack, or \"snack\" when the Snack was saved anonymously",
21295            "args": [],
21296            "type": {
21297              "kind": "NON_NULL",
21298              "name": null,
21299              "ofType": {
21300                "kind": "SCALAR",
21301                "name": "String",
21302                "ofType": null
21303              }
21304            },
21305            "isDeprecated": false,
21306            "deprecationReason": null
21307          }
21308        ],
21309        "inputFields": null,
21310        "interfaces": [
21311          {
21312            "kind": "INTERFACE",
21313            "name": "Project",
21314            "ofType": null
21315          }
21316        ],
21317        "enumValues": null,
21318        "possibleTypes": null
21319      },
21320      {
21321        "kind": "OBJECT",
21322        "name": "SnackQuery",
21323        "description": null,
21324        "fields": [
21325          {
21326            "name": "byHashId",
21327            "description": "Get snack by hashId",
21328            "args": [
21329              {
21330                "name": "hashId",
21331                "description": null,
21332                "type": {
21333                  "kind": "NON_NULL",
21334                  "name": null,
21335                  "ofType": {
21336                    "kind": "SCALAR",
21337                    "name": "ID",
21338                    "ofType": null
21339                  }
21340                },
21341                "defaultValue": null,
21342                "isDeprecated": false,
21343                "deprecationReason": null
21344              }
21345            ],
21346            "type": {
21347              "kind": "NON_NULL",
21348              "name": null,
21349              "ofType": {
21350                "kind": "OBJECT",
21351                "name": "Snack",
21352                "ofType": null
21353              }
21354            },
21355            "isDeprecated": false,
21356            "deprecationReason": null
21357          },
21358          {
21359            "name": "byId",
21360            "description": "Get snack by hashId",
21361            "args": [
21362              {
21363                "name": "id",
21364                "description": null,
21365                "type": {
21366                  "kind": "NON_NULL",
21367                  "name": null,
21368                  "ofType": {
21369                    "kind": "SCALAR",
21370                    "name": "ID",
21371                    "ofType": null
21372                  }
21373                },
21374                "defaultValue": null,
21375                "isDeprecated": false,
21376                "deprecationReason": null
21377              }
21378            ],
21379            "type": {
21380              "kind": "NON_NULL",
21381              "name": null,
21382              "ofType": {
21383                "kind": "OBJECT",
21384                "name": "Snack",
21385                "ofType": null
21386              }
21387            },
21388            "isDeprecated": true,
21389            "deprecationReason": "Use byHashId"
21390          }
21391        ],
21392        "inputFields": null,
21393        "interfaces": [],
21394        "enumValues": null,
21395        "possibleTypes": null
21396      },
21397      {
21398        "kind": "ENUM",
21399        "name": "StandardOffer",
21400        "description": null,
21401        "fields": null,
21402        "inputFields": null,
21403        "interfaces": null,
21404        "enumValues": [
21405          {
21406            "name": "DEFAULT",
21407            "description": "$29 USD per month, 30 day trial",
21408            "isDeprecated": false,
21409            "deprecationReason": null
21410          },
21411          {
21412            "name": "SUPPORT",
21413            "description": "$800 USD per month",
21414            "isDeprecated": false,
21415            "deprecationReason": null
21416          },
21417          {
21418            "name": "YC_DEALS",
21419            "description": "$29 USD per month, 1 year trial",
21420            "isDeprecated": false,
21421            "deprecationReason": null
21422          },
21423          {
21424            "name": "YEARLY_SUB",
21425            "description": "$348 USD per year, 30 day trial",
21426            "isDeprecated": false,
21427            "deprecationReason": null
21428          }
21429        ],
21430        "possibleTypes": null
21431      },
21432      {
21433        "kind": "SCALAR",
21434        "name": "String",
21435        "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.",
21436        "fields": null,
21437        "inputFields": null,
21438        "interfaces": null,
21439        "enumValues": null,
21440        "possibleTypes": null
21441      },
21442      {
21443        "kind": "OBJECT",
21444        "name": "Submission",
21445        "description": "Represents an EAS Submission",
21446        "fields": [
21447          {
21448            "name": "activityTimestamp",
21449            "description": null,
21450            "args": [],
21451            "type": {
21452              "kind": "NON_NULL",
21453              "name": null,
21454              "ofType": {
21455                "kind": "SCALAR",
21456                "name": "DateTime",
21457                "ofType": null
21458              }
21459            },
21460            "isDeprecated": false,
21461            "deprecationReason": null
21462          },
21463          {
21464            "name": "actor",
21465            "description": null,
21466            "args": [],
21467            "type": {
21468              "kind": "INTERFACE",
21469              "name": "Actor",
21470              "ofType": null
21471            },
21472            "isDeprecated": false,
21473            "deprecationReason": null
21474          },
21475          {
21476            "name": "androidConfig",
21477            "description": null,
21478            "args": [],
21479            "type": {
21480              "kind": "OBJECT",
21481              "name": "AndroidSubmissionConfig",
21482              "ofType": null
21483            },
21484            "isDeprecated": false,
21485            "deprecationReason": null
21486          },
21487          {
21488            "name": "app",
21489            "description": null,
21490            "args": [],
21491            "type": {
21492              "kind": "NON_NULL",
21493              "name": null,
21494              "ofType": {
21495                "kind": "OBJECT",
21496                "name": "App",
21497                "ofType": null
21498              }
21499            },
21500            "isDeprecated": false,
21501            "deprecationReason": null
21502          },
21503          {
21504            "name": "archiveUrl",
21505            "description": null,
21506            "args": [],
21507            "type": {
21508              "kind": "SCALAR",
21509              "name": "String",
21510              "ofType": null
21511            },
21512            "isDeprecated": false,
21513            "deprecationReason": null
21514          },
21515          {
21516            "name": "canRetry",
21517            "description": null,
21518            "args": [],
21519            "type": {
21520              "kind": "NON_NULL",
21521              "name": null,
21522              "ofType": {
21523                "kind": "SCALAR",
21524                "name": "Boolean",
21525                "ofType": null
21526              }
21527            },
21528            "isDeprecated": false,
21529            "deprecationReason": null
21530          },
21531          {
21532            "name": "cancelingActor",
21533            "description": null,
21534            "args": [],
21535            "type": {
21536              "kind": "INTERFACE",
21537              "name": "Actor",
21538              "ofType": null
21539            },
21540            "isDeprecated": false,
21541            "deprecationReason": null
21542          },
21543          {
21544            "name": "createdAt",
21545            "description": null,
21546            "args": [],
21547            "type": {
21548              "kind": "NON_NULL",
21549              "name": null,
21550              "ofType": {
21551                "kind": "SCALAR",
21552                "name": "DateTime",
21553                "ofType": null
21554              }
21555            },
21556            "isDeprecated": false,
21557            "deprecationReason": null
21558          },
21559          {
21560            "name": "error",
21561            "description": null,
21562            "args": [],
21563            "type": {
21564              "kind": "OBJECT",
21565              "name": "SubmissionError",
21566              "ofType": null
21567            },
21568            "isDeprecated": false,
21569            "deprecationReason": null
21570          },
21571          {
21572            "name": "id",
21573            "description": null,
21574            "args": [],
21575            "type": {
21576              "kind": "NON_NULL",
21577              "name": null,
21578              "ofType": {
21579                "kind": "SCALAR",
21580                "name": "ID",
21581                "ofType": null
21582              }
21583            },
21584            "isDeprecated": false,
21585            "deprecationReason": null
21586          },
21587          {
21588            "name": "initiatingActor",
21589            "description": null,
21590            "args": [],
21591            "type": {
21592              "kind": "INTERFACE",
21593              "name": "Actor",
21594              "ofType": null
21595            },
21596            "isDeprecated": false,
21597            "deprecationReason": null
21598          },
21599          {
21600            "name": "iosConfig",
21601            "description": null,
21602            "args": [],
21603            "type": {
21604              "kind": "OBJECT",
21605              "name": "IosSubmissionConfig",
21606              "ofType": null
21607            },
21608            "isDeprecated": false,
21609            "deprecationReason": null
21610          },
21611          {
21612            "name": "logsUrl",
21613            "description": null,
21614            "args": [],
21615            "type": {
21616              "kind": "SCALAR",
21617              "name": "String",
21618              "ofType": null
21619            },
21620            "isDeprecated": false,
21621            "deprecationReason": null
21622          },
21623          {
21624            "name": "parentSubmission",
21625            "description": null,
21626            "args": [],
21627            "type": {
21628              "kind": "OBJECT",
21629              "name": "Submission",
21630              "ofType": null
21631            },
21632            "isDeprecated": false,
21633            "deprecationReason": null
21634          },
21635          {
21636            "name": "platform",
21637            "description": null,
21638            "args": [],
21639            "type": {
21640              "kind": "NON_NULL",
21641              "name": null,
21642              "ofType": {
21643                "kind": "ENUM",
21644                "name": "AppPlatform",
21645                "ofType": null
21646              }
21647            },
21648            "isDeprecated": false,
21649            "deprecationReason": null
21650          },
21651          {
21652            "name": "status",
21653            "description": null,
21654            "args": [],
21655            "type": {
21656              "kind": "NON_NULL",
21657              "name": null,
21658              "ofType": {
21659                "kind": "ENUM",
21660                "name": "SubmissionStatus",
21661                "ofType": null
21662              }
21663            },
21664            "isDeprecated": false,
21665            "deprecationReason": null
21666          },
21667          {
21668            "name": "submittedBuild",
21669            "description": null,
21670            "args": [],
21671            "type": {
21672              "kind": "OBJECT",
21673              "name": "Build",
21674              "ofType": null
21675            },
21676            "isDeprecated": false,
21677            "deprecationReason": null
21678          },
21679          {
21680            "name": "updatedAt",
21681            "description": null,
21682            "args": [],
21683            "type": {
21684              "kind": "NON_NULL",
21685              "name": null,
21686              "ofType": {
21687                "kind": "SCALAR",
21688                "name": "DateTime",
21689                "ofType": null
21690              }
21691            },
21692            "isDeprecated": false,
21693            "deprecationReason": null
21694          }
21695        ],
21696        "inputFields": null,
21697        "interfaces": [
21698          {
21699            "kind": "INTERFACE",
21700            "name": "ActivityTimelineProjectActivity",
21701            "ofType": null
21702          }
21703        ],
21704        "enumValues": null,
21705        "possibleTypes": null
21706      },
21707      {
21708        "kind": "ENUM",
21709        "name": "SubmissionAndroidArchiveType",
21710        "description": null,
21711        "fields": null,
21712        "inputFields": null,
21713        "interfaces": null,
21714        "enumValues": [
21715          {
21716            "name": "AAB",
21717            "description": null,
21718            "isDeprecated": false,
21719            "deprecationReason": null
21720          },
21721          {
21722            "name": "APK",
21723            "description": null,
21724            "isDeprecated": false,
21725            "deprecationReason": null
21726          }
21727        ],
21728        "possibleTypes": null
21729      },
21730      {
21731        "kind": "ENUM",
21732        "name": "SubmissionAndroidReleaseStatus",
21733        "description": null,
21734        "fields": null,
21735        "inputFields": null,
21736        "interfaces": null,
21737        "enumValues": [
21738          {
21739            "name": "COMPLETED",
21740            "description": null,
21741            "isDeprecated": false,
21742            "deprecationReason": null
21743          },
21744          {
21745            "name": "DRAFT",
21746            "description": null,
21747            "isDeprecated": false,
21748            "deprecationReason": null
21749          },
21750          {
21751            "name": "HALTED",
21752            "description": null,
21753            "isDeprecated": false,
21754            "deprecationReason": null
21755          },
21756          {
21757            "name": "IN_PROGRESS",
21758            "description": null,
21759            "isDeprecated": false,
21760            "deprecationReason": null
21761          }
21762        ],
21763        "possibleTypes": null
21764      },
21765      {
21766        "kind": "ENUM",
21767        "name": "SubmissionAndroidTrack",
21768        "description": null,
21769        "fields": null,
21770        "inputFields": null,
21771        "interfaces": null,
21772        "enumValues": [
21773          {
21774            "name": "ALPHA",
21775            "description": null,
21776            "isDeprecated": false,
21777            "deprecationReason": null
21778          },
21779          {
21780            "name": "BETA",
21781            "description": null,
21782            "isDeprecated": false,
21783            "deprecationReason": null
21784          },
21785          {
21786            "name": "INTERNAL",
21787            "description": null,
21788            "isDeprecated": false,
21789            "deprecationReason": null
21790          },
21791          {
21792            "name": "PRODUCTION",
21793            "description": null,
21794            "isDeprecated": false,
21795            "deprecationReason": null
21796          }
21797        ],
21798        "possibleTypes": null
21799      },
21800      {
21801        "kind": "OBJECT",
21802        "name": "SubmissionError",
21803        "description": null,
21804        "fields": [
21805          {
21806            "name": "errorCode",
21807            "description": null,
21808            "args": [],
21809            "type": {
21810              "kind": "SCALAR",
21811              "name": "String",
21812              "ofType": null
21813            },
21814            "isDeprecated": false,
21815            "deprecationReason": null
21816          },
21817          {
21818            "name": "message",
21819            "description": null,
21820            "args": [],
21821            "type": {
21822              "kind": "SCALAR",
21823              "name": "String",
21824              "ofType": null
21825            },
21826            "isDeprecated": false,
21827            "deprecationReason": null
21828          }
21829        ],
21830        "inputFields": null,
21831        "interfaces": [],
21832        "enumValues": null,
21833        "possibleTypes": null
21834      },
21835      {
21836        "kind": "INPUT_OBJECT",
21837        "name": "SubmissionFilter",
21838        "description": null,
21839        "fields": null,
21840        "inputFields": [
21841          {
21842            "name": "platform",
21843            "description": null,
21844            "type": {
21845              "kind": "ENUM",
21846              "name": "AppPlatform",
21847              "ofType": null
21848            },
21849            "defaultValue": null,
21850            "isDeprecated": false,
21851            "deprecationReason": null
21852          },
21853          {
21854            "name": "status",
21855            "description": null,
21856            "type": {
21857              "kind": "ENUM",
21858              "name": "SubmissionStatus",
21859              "ofType": null
21860            },
21861            "defaultValue": null,
21862            "isDeprecated": false,
21863            "deprecationReason": null
21864          }
21865        ],
21866        "interfaces": null,
21867        "enumValues": null,
21868        "possibleTypes": null
21869      },
21870      {
21871        "kind": "OBJECT",
21872        "name": "SubmissionMutation",
21873        "description": null,
21874        "fields": [
21875          {
21876            "name": "cancelSubmission",
21877            "description": "Cancel an EAS Submit submission",
21878            "args": [
21879              {
21880                "name": "submissionId",
21881                "description": null,
21882                "type": {
21883                  "kind": "NON_NULL",
21884                  "name": null,
21885                  "ofType": {
21886                    "kind": "SCALAR",
21887                    "name": "ID",
21888                    "ofType": null
21889                  }
21890                },
21891                "defaultValue": null,
21892                "isDeprecated": false,
21893                "deprecationReason": null
21894              }
21895            ],
21896            "type": {
21897              "kind": "NON_NULL",
21898              "name": null,
21899              "ofType": {
21900                "kind": "OBJECT",
21901                "name": "Submission",
21902                "ofType": null
21903              }
21904            },
21905            "isDeprecated": false,
21906            "deprecationReason": null
21907          },
21908          {
21909            "name": "createAndroidSubmission",
21910            "description": "Create an Android EAS Submit submission",
21911            "args": [
21912              {
21913                "name": "input",
21914                "description": null,
21915                "type": {
21916                  "kind": "NON_NULL",
21917                  "name": null,
21918                  "ofType": {
21919                    "kind": "INPUT_OBJECT",
21920                    "name": "CreateAndroidSubmissionInput",
21921                    "ofType": null
21922                  }
21923                },
21924                "defaultValue": null,
21925                "isDeprecated": false,
21926                "deprecationReason": null
21927              }
21928            ],
21929            "type": {
21930              "kind": "NON_NULL",
21931              "name": null,
21932              "ofType": {
21933                "kind": "OBJECT",
21934                "name": "CreateSubmissionResult",
21935                "ofType": null
21936              }
21937            },
21938            "isDeprecated": false,
21939            "deprecationReason": null
21940          },
21941          {
21942            "name": "createIosSubmission",
21943            "description": "Create an iOS EAS Submit submission",
21944            "args": [
21945              {
21946                "name": "input",
21947                "description": null,
21948                "type": {
21949                  "kind": "NON_NULL",
21950                  "name": null,
21951                  "ofType": {
21952                    "kind": "INPUT_OBJECT",
21953                    "name": "CreateIosSubmissionInput",
21954                    "ofType": null
21955                  }
21956                },
21957                "defaultValue": null,
21958                "isDeprecated": false,
21959                "deprecationReason": null
21960              }
21961            ],
21962            "type": {
21963              "kind": "NON_NULL",
21964              "name": null,
21965              "ofType": {
21966                "kind": "OBJECT",
21967                "name": "CreateSubmissionResult",
21968                "ofType": null
21969              }
21970            },
21971            "isDeprecated": false,
21972            "deprecationReason": null
21973          },
21974          {
21975            "name": "retrySubmission",
21976            "description": "Retry an EAS Submit submission",
21977            "args": [
21978              {
21979                "name": "parentSubmissionId",
21980                "description": null,
21981                "type": {
21982                  "kind": "NON_NULL",
21983                  "name": null,
21984                  "ofType": {
21985                    "kind": "SCALAR",
21986                    "name": "ID",
21987                    "ofType": null
21988                  }
21989                },
21990                "defaultValue": null,
21991                "isDeprecated": false,
21992                "deprecationReason": null
21993              }
21994            ],
21995            "type": {
21996              "kind": "NON_NULL",
21997              "name": null,
21998              "ofType": {
21999                "kind": "OBJECT",
22000                "name": "CreateSubmissionResult",
22001                "ofType": null
22002              }
22003            },
22004            "isDeprecated": false,
22005            "deprecationReason": null
22006          }
22007        ],
22008        "inputFields": null,
22009        "interfaces": [],
22010        "enumValues": null,
22011        "possibleTypes": null
22012      },
22013      {
22014        "kind": "OBJECT",
22015        "name": "SubmissionQuery",
22016        "description": null,
22017        "fields": [
22018          {
22019            "name": "byId",
22020            "description": "Look up EAS Submission by submission ID",
22021            "args": [
22022              {
22023                "name": "submissionId",
22024                "description": null,
22025                "type": {
22026                  "kind": "NON_NULL",
22027                  "name": null,
22028                  "ofType": {
22029                    "kind": "SCALAR",
22030                    "name": "ID",
22031                    "ofType": null
22032                  }
22033                },
22034                "defaultValue": null,
22035                "isDeprecated": false,
22036                "deprecationReason": null
22037              }
22038            ],
22039            "type": {
22040              "kind": "NON_NULL",
22041              "name": null,
22042              "ofType": {
22043                "kind": "OBJECT",
22044                "name": "Submission",
22045                "ofType": null
22046              }
22047            },
22048            "isDeprecated": false,
22049            "deprecationReason": null
22050          }
22051        ],
22052        "inputFields": null,
22053        "interfaces": [],
22054        "enumValues": null,
22055        "possibleTypes": null
22056      },
22057      {
22058        "kind": "ENUM",
22059        "name": "SubmissionStatus",
22060        "description": null,
22061        "fields": null,
22062        "inputFields": null,
22063        "interfaces": null,
22064        "enumValues": [
22065          {
22066            "name": "AWAITING_BUILD",
22067            "description": null,
22068            "isDeprecated": false,
22069            "deprecationReason": null
22070          },
22071          {
22072            "name": "CANCELED",
22073            "description": null,
22074            "isDeprecated": false,
22075            "deprecationReason": null
22076          },
22077          {
22078            "name": "ERRORED",
22079            "description": null,
22080            "isDeprecated": false,
22081            "deprecationReason": null
22082          },
22083          {
22084            "name": "FINISHED",
22085            "description": null,
22086            "isDeprecated": false,
22087            "deprecationReason": null
22088          },
22089          {
22090            "name": "IN_PROGRESS",
22091            "description": null,
22092            "isDeprecated": false,
22093            "deprecationReason": null
22094          },
22095          {
22096            "name": "IN_QUEUE",
22097            "description": null,
22098            "isDeprecated": false,
22099            "deprecationReason": null
22100          }
22101        ],
22102        "possibleTypes": null
22103      },
22104      {
22105        "kind": "OBJECT",
22106        "name": "SubscriptionDetails",
22107        "description": null,
22108        "fields": [
22109          {
22110            "name": "addons",
22111            "description": null,
22112            "args": [],
22113            "type": {
22114              "kind": "NON_NULL",
22115              "name": null,
22116              "ofType": {
22117                "kind": "LIST",
22118                "name": null,
22119                "ofType": {
22120                  "kind": "NON_NULL",
22121                  "name": null,
22122                  "ofType": {
22123                    "kind": "OBJECT",
22124                    "name": "AddonDetails",
22125                    "ofType": null
22126                  }
22127                }
22128              }
22129            },
22130            "isDeprecated": false,
22131            "deprecationReason": null
22132          },
22133          {
22134            "name": "cancelledAt",
22135            "description": null,
22136            "args": [],
22137            "type": {
22138              "kind": "SCALAR",
22139              "name": "DateTime",
22140              "ofType": null
22141            },
22142            "isDeprecated": false,
22143            "deprecationReason": null
22144          },
22145          {
22146            "name": "concurrencies",
22147            "description": null,
22148            "args": [],
22149            "type": {
22150              "kind": "OBJECT",
22151              "name": "Concurrencies",
22152              "ofType": null
22153            },
22154            "isDeprecated": false,
22155            "deprecationReason": null
22156          },
22157          {
22158            "name": "endedAt",
22159            "description": null,
22160            "args": [],
22161            "type": {
22162              "kind": "SCALAR",
22163              "name": "DateTime",
22164              "ofType": null
22165            },
22166            "isDeprecated": false,
22167            "deprecationReason": null
22168          },
22169          {
22170            "name": "id",
22171            "description": null,
22172            "args": [],
22173            "type": {
22174              "kind": "NON_NULL",
22175              "name": null,
22176              "ofType": {
22177                "kind": "SCALAR",
22178                "name": "ID",
22179                "ofType": null
22180              }
22181            },
22182            "isDeprecated": false,
22183            "deprecationReason": null
22184          },
22185          {
22186            "name": "isDowngrading",
22187            "description": null,
22188            "args": [],
22189            "type": {
22190              "kind": "SCALAR",
22191              "name": "Boolean",
22192              "ofType": null
22193            },
22194            "isDeprecated": false,
22195            "deprecationReason": null
22196          },
22197          {
22198            "name": "name",
22199            "description": null,
22200            "args": [],
22201            "type": {
22202              "kind": "SCALAR",
22203              "name": "String",
22204              "ofType": null
22205            },
22206            "isDeprecated": false,
22207            "deprecationReason": null
22208          },
22209          {
22210            "name": "nextInvoice",
22211            "description": null,
22212            "args": [],
22213            "type": {
22214              "kind": "SCALAR",
22215              "name": "DateTime",
22216              "ofType": null
22217            },
22218            "isDeprecated": false,
22219            "deprecationReason": null
22220          },
22221          {
22222            "name": "planId",
22223            "description": null,
22224            "args": [],
22225            "type": {
22226              "kind": "SCALAR",
22227              "name": "String",
22228              "ofType": null
22229            },
22230            "isDeprecated": false,
22231            "deprecationReason": null
22232          },
22233          {
22234            "name": "price",
22235            "description": null,
22236            "args": [],
22237            "type": {
22238              "kind": "NON_NULL",
22239              "name": null,
22240              "ofType": {
22241                "kind": "SCALAR",
22242                "name": "Int",
22243                "ofType": null
22244              }
22245            },
22246            "isDeprecated": false,
22247            "deprecationReason": null
22248          },
22249          {
22250            "name": "status",
22251            "description": null,
22252            "args": [],
22253            "type": {
22254              "kind": "SCALAR",
22255              "name": "String",
22256              "ofType": null
22257            },
22258            "isDeprecated": false,
22259            "deprecationReason": null
22260          },
22261          {
22262            "name": "trialEnd",
22263            "description": null,
22264            "args": [],
22265            "type": {
22266              "kind": "SCALAR",
22267              "name": "DateTime",
22268              "ofType": null
22269            },
22270            "isDeprecated": false,
22271            "deprecationReason": null
22272          },
22273          {
22274            "name": "willCancel",
22275            "description": null,
22276            "args": [],
22277            "type": {
22278              "kind": "SCALAR",
22279              "name": "Boolean",
22280              "ofType": null
22281            },
22282            "isDeprecated": false,
22283            "deprecationReason": null
22284          }
22285        ],
22286        "inputFields": null,
22287        "interfaces": [],
22288        "enumValues": null,
22289        "possibleTypes": null
22290      },
22291      {
22292        "kind": "OBJECT",
22293        "name": "Update",
22294        "description": null,
22295        "fields": [
22296          {
22297            "name": "activityTimestamp",
22298            "description": null,
22299            "args": [],
22300            "type": {
22301              "kind": "NON_NULL",
22302              "name": null,
22303              "ofType": {
22304                "kind": "SCALAR",
22305                "name": "DateTime",
22306                "ofType": null
22307              }
22308            },
22309            "isDeprecated": false,
22310            "deprecationReason": null
22311          },
22312          {
22313            "name": "actor",
22314            "description": null,
22315            "args": [],
22316            "type": {
22317              "kind": "INTERFACE",
22318              "name": "Actor",
22319              "ofType": null
22320            },
22321            "isDeprecated": false,
22322            "deprecationReason": null
22323          },
22324          {
22325            "name": "awaitingCodeSigningInfo",
22326            "description": null,
22327            "args": [],
22328            "type": {
22329              "kind": "NON_NULL",
22330              "name": null,
22331              "ofType": {
22332                "kind": "SCALAR",
22333                "name": "Boolean",
22334                "ofType": null
22335              }
22336            },
22337            "isDeprecated": false,
22338            "deprecationReason": null
22339          },
22340          {
22341            "name": "branch",
22342            "description": null,
22343            "args": [],
22344            "type": {
22345              "kind": "NON_NULL",
22346              "name": null,
22347              "ofType": {
22348                "kind": "OBJECT",
22349                "name": "UpdateBranch",
22350                "ofType": null
22351              }
22352            },
22353            "isDeprecated": false,
22354            "deprecationReason": null
22355          },
22356          {
22357            "name": "branchId",
22358            "description": null,
22359            "args": [],
22360            "type": {
22361              "kind": "NON_NULL",
22362              "name": null,
22363              "ofType": {
22364                "kind": "SCALAR",
22365                "name": "ID",
22366                "ofType": null
22367              }
22368            },
22369            "isDeprecated": false,
22370            "deprecationReason": null
22371          },
22372          {
22373            "name": "codeSigningInfo",
22374            "description": null,
22375            "args": [],
22376            "type": {
22377              "kind": "OBJECT",
22378              "name": "CodeSigningInfo",
22379              "ofType": null
22380            },
22381            "isDeprecated": false,
22382            "deprecationReason": null
22383          },
22384          {
22385            "name": "createdAt",
22386            "description": null,
22387            "args": [],
22388            "type": {
22389              "kind": "NON_NULL",
22390              "name": null,
22391              "ofType": {
22392                "kind": "SCALAR",
22393                "name": "DateTime",
22394                "ofType": null
22395              }
22396            },
22397            "isDeprecated": false,
22398            "deprecationReason": null
22399          },
22400          {
22401            "name": "group",
22402            "description": null,
22403            "args": [],
22404            "type": {
22405              "kind": "NON_NULL",
22406              "name": null,
22407              "ofType": {
22408                "kind": "SCALAR",
22409                "name": "String",
22410                "ofType": null
22411              }
22412            },
22413            "isDeprecated": false,
22414            "deprecationReason": null
22415          },
22416          {
22417            "name": "id",
22418            "description": null,
22419            "args": [],
22420            "type": {
22421              "kind": "NON_NULL",
22422              "name": null,
22423              "ofType": {
22424                "kind": "SCALAR",
22425                "name": "ID",
22426                "ofType": null
22427              }
22428            },
22429            "isDeprecated": false,
22430            "deprecationReason": null
22431          },
22432          {
22433            "name": "manifestFragment",
22434            "description": null,
22435            "args": [],
22436            "type": {
22437              "kind": "NON_NULL",
22438              "name": null,
22439              "ofType": {
22440                "kind": "SCALAR",
22441                "name": "String",
22442                "ofType": null
22443              }
22444            },
22445            "isDeprecated": false,
22446            "deprecationReason": null
22447          },
22448          {
22449            "name": "manifestPermalink",
22450            "description": null,
22451            "args": [],
22452            "type": {
22453              "kind": "NON_NULL",
22454              "name": null,
22455              "ofType": {
22456                "kind": "SCALAR",
22457                "name": "String",
22458                "ofType": null
22459              }
22460            },
22461            "isDeprecated": false,
22462            "deprecationReason": null
22463          },
22464          {
22465            "name": "message",
22466            "description": null,
22467            "args": [],
22468            "type": {
22469              "kind": "SCALAR",
22470              "name": "String",
22471              "ofType": null
22472            },
22473            "isDeprecated": false,
22474            "deprecationReason": null
22475          },
22476          {
22477            "name": "platform",
22478            "description": null,
22479            "args": [],
22480            "type": {
22481              "kind": "NON_NULL",
22482              "name": null,
22483              "ofType": {
22484                "kind": "SCALAR",
22485                "name": "String",
22486                "ofType": null
22487              }
22488            },
22489            "isDeprecated": false,
22490            "deprecationReason": null
22491          },
22492          {
22493            "name": "runtimeVersion",
22494            "description": null,
22495            "args": [],
22496            "type": {
22497              "kind": "NON_NULL",
22498              "name": null,
22499              "ofType": {
22500                "kind": "SCALAR",
22501                "name": "String",
22502                "ofType": null
22503              }
22504            },
22505            "isDeprecated": false,
22506            "deprecationReason": null
22507          },
22508          {
22509            "name": "updatedAt",
22510            "description": null,
22511            "args": [],
22512            "type": {
22513              "kind": "NON_NULL",
22514              "name": null,
22515              "ofType": {
22516                "kind": "SCALAR",
22517                "name": "DateTime",
22518                "ofType": null
22519              }
22520            },
22521            "isDeprecated": false,
22522            "deprecationReason": null
22523          }
22524        ],
22525        "inputFields": null,
22526        "interfaces": [
22527          {
22528            "kind": "INTERFACE",
22529            "name": "ActivityTimelineProjectActivity",
22530            "ofType": null
22531          }
22532        ],
22533        "enumValues": null,
22534        "possibleTypes": null
22535      },
22536      {
22537        "kind": "OBJECT",
22538        "name": "UpdateBranch",
22539        "description": null,
22540        "fields": [
22541          {
22542            "name": "appId",
22543            "description": null,
22544            "args": [],
22545            "type": {
22546              "kind": "NON_NULL",
22547              "name": null,
22548              "ofType": {
22549                "kind": "SCALAR",
22550                "name": "ID",
22551                "ofType": null
22552              }
22553            },
22554            "isDeprecated": false,
22555            "deprecationReason": null
22556          },
22557          {
22558            "name": "createdAt",
22559            "description": null,
22560            "args": [],
22561            "type": {
22562              "kind": "NON_NULL",
22563              "name": null,
22564              "ofType": {
22565                "kind": "SCALAR",
22566                "name": "DateTime",
22567                "ofType": null
22568              }
22569            },
22570            "isDeprecated": false,
22571            "deprecationReason": null
22572          },
22573          {
22574            "name": "id",
22575            "description": null,
22576            "args": [],
22577            "type": {
22578              "kind": "NON_NULL",
22579              "name": null,
22580              "ofType": {
22581                "kind": "SCALAR",
22582                "name": "ID",
22583                "ofType": null
22584              }
22585            },
22586            "isDeprecated": false,
22587            "deprecationReason": null
22588          },
22589          {
22590            "name": "name",
22591            "description": null,
22592            "args": [],
22593            "type": {
22594              "kind": "NON_NULL",
22595              "name": null,
22596              "ofType": {
22597                "kind": "SCALAR",
22598                "name": "String",
22599                "ofType": null
22600              }
22601            },
22602            "isDeprecated": false,
22603            "deprecationReason": null
22604          },
22605          {
22606            "name": "updatedAt",
22607            "description": null,
22608            "args": [],
22609            "type": {
22610              "kind": "NON_NULL",
22611              "name": null,
22612              "ofType": {
22613                "kind": "SCALAR",
22614                "name": "DateTime",
22615                "ofType": null
22616              }
22617            },
22618            "isDeprecated": false,
22619            "deprecationReason": null
22620          },
22621          {
22622            "name": "updates",
22623            "description": null,
22624            "args": [
22625              {
22626                "name": "filter",
22627                "description": null,
22628                "type": {
22629                  "kind": "INPUT_OBJECT",
22630                  "name": "UpdatesFilter",
22631                  "ofType": null
22632                },
22633                "defaultValue": null,
22634                "isDeprecated": false,
22635                "deprecationReason": null
22636              },
22637              {
22638                "name": "limit",
22639                "description": null,
22640                "type": {
22641                  "kind": "NON_NULL",
22642                  "name": null,
22643                  "ofType": {
22644                    "kind": "SCALAR",
22645                    "name": "Int",
22646                    "ofType": null
22647                  }
22648                },
22649                "defaultValue": null,
22650                "isDeprecated": false,
22651                "deprecationReason": null
22652              },
22653              {
22654                "name": "offset",
22655                "description": null,
22656                "type": {
22657                  "kind": "NON_NULL",
22658                  "name": null,
22659                  "ofType": {
22660                    "kind": "SCALAR",
22661                    "name": "Int",
22662                    "ofType": null
22663                  }
22664                },
22665                "defaultValue": null,
22666                "isDeprecated": false,
22667                "deprecationReason": null
22668              }
22669            ],
22670            "type": {
22671              "kind": "NON_NULL",
22672              "name": null,
22673              "ofType": {
22674                "kind": "LIST",
22675                "name": null,
22676                "ofType": {
22677                  "kind": "NON_NULL",
22678                  "name": null,
22679                  "ofType": {
22680                    "kind": "OBJECT",
22681                    "name": "Update",
22682                    "ofType": null
22683                  }
22684                }
22685              }
22686            },
22687            "isDeprecated": false,
22688            "deprecationReason": null
22689          }
22690        ],
22691        "inputFields": null,
22692        "interfaces": [],
22693        "enumValues": null,
22694        "possibleTypes": null
22695      },
22696      {
22697        "kind": "OBJECT",
22698        "name": "UpdateBranchMutation",
22699        "description": null,
22700        "fields": [
22701          {
22702            "name": "createUpdateBranchForApp",
22703            "description": "Create an EAS branch for an app",
22704            "args": [
22705              {
22706                "name": "appId",
22707                "description": null,
22708                "type": {
22709                  "kind": "NON_NULL",
22710                  "name": null,
22711                  "ofType": {
22712                    "kind": "SCALAR",
22713                    "name": "ID",
22714                    "ofType": null
22715                  }
22716                },
22717                "defaultValue": null,
22718                "isDeprecated": false,
22719                "deprecationReason": null
22720              },
22721              {
22722                "name": "name",
22723                "description": null,
22724                "type": {
22725                  "kind": "NON_NULL",
22726                  "name": null,
22727                  "ofType": {
22728                    "kind": "SCALAR",
22729                    "name": "String",
22730                    "ofType": null
22731                  }
22732                },
22733                "defaultValue": null,
22734                "isDeprecated": false,
22735                "deprecationReason": null
22736              }
22737            ],
22738            "type": {
22739              "kind": "NON_NULL",
22740              "name": null,
22741              "ofType": {
22742                "kind": "OBJECT",
22743                "name": "UpdateBranch",
22744                "ofType": null
22745              }
22746            },
22747            "isDeprecated": false,
22748            "deprecationReason": null
22749          },
22750          {
22751            "name": "deleteUpdateBranch",
22752            "description": "Delete an EAS branch and all of its updates as long as the branch is not being used by any channels",
22753            "args": [
22754              {
22755                "name": "branchId",
22756                "description": null,
22757                "type": {
22758                  "kind": "NON_NULL",
22759                  "name": null,
22760                  "ofType": {
22761                    "kind": "SCALAR",
22762                    "name": "ID",
22763                    "ofType": null
22764                  }
22765                },
22766                "defaultValue": null,
22767                "isDeprecated": false,
22768                "deprecationReason": null
22769              }
22770            ],
22771            "type": {
22772              "kind": "NON_NULL",
22773              "name": null,
22774              "ofType": {
22775                "kind": "OBJECT",
22776                "name": "DeleteUpdateBranchResult",
22777                "ofType": null
22778              }
22779            },
22780            "isDeprecated": false,
22781            "deprecationReason": null
22782          },
22783          {
22784            "name": "editUpdateBranch",
22785            "description": "Edit an EAS branch. The branch can be specified either by its ID or\nwith the combination of (appId, name).",
22786            "args": [
22787              {
22788                "name": "input",
22789                "description": null,
22790                "type": {
22791                  "kind": "NON_NULL",
22792                  "name": null,
22793                  "ofType": {
22794                    "kind": "INPUT_OBJECT",
22795                    "name": "EditUpdateBranchInput",
22796                    "ofType": null
22797                  }
22798                },
22799                "defaultValue": null,
22800                "isDeprecated": false,
22801                "deprecationReason": null
22802              }
22803            ],
22804            "type": {
22805              "kind": "NON_NULL",
22806              "name": null,
22807              "ofType": {
22808                "kind": "OBJECT",
22809                "name": "UpdateBranch",
22810                "ofType": null
22811              }
22812            },
22813            "isDeprecated": false,
22814            "deprecationReason": null
22815          },
22816          {
22817            "name": "publishUpdateGroups",
22818            "description": "Publish an update group to a branch",
22819            "args": [
22820              {
22821                "name": "publishUpdateGroupsInput",
22822                "description": null,
22823                "type": {
22824                  "kind": "NON_NULL",
22825                  "name": null,
22826                  "ofType": {
22827                    "kind": "LIST",
22828                    "name": null,
22829                    "ofType": {
22830                      "kind": "NON_NULL",
22831                      "name": null,
22832                      "ofType": {
22833                        "kind": "INPUT_OBJECT",
22834                        "name": "PublishUpdateGroupInput",
22835                        "ofType": null
22836                      }
22837                    }
22838                  }
22839                },
22840                "defaultValue": null,
22841                "isDeprecated": false,
22842                "deprecationReason": null
22843              }
22844            ],
22845            "type": {
22846              "kind": "NON_NULL",
22847              "name": null,
22848              "ofType": {
22849                "kind": "LIST",
22850                "name": null,
22851                "ofType": {
22852                  "kind": "NON_NULL",
22853                  "name": null,
22854                  "ofType": {
22855                    "kind": "OBJECT",
22856                    "name": "Update",
22857                    "ofType": null
22858                  }
22859                }
22860              }
22861            },
22862            "isDeprecated": false,
22863            "deprecationReason": null
22864          }
22865        ],
22866        "inputFields": null,
22867        "interfaces": [],
22868        "enumValues": null,
22869        "possibleTypes": null
22870      },
22871      {
22872        "kind": "OBJECT",
22873        "name": "UpdateChannel",
22874        "description": null,
22875        "fields": [
22876          {
22877            "name": "appId",
22878            "description": null,
22879            "args": [],
22880            "type": {
22881              "kind": "NON_NULL",
22882              "name": null,
22883              "ofType": {
22884                "kind": "SCALAR",
22885                "name": "ID",
22886                "ofType": null
22887              }
22888            },
22889            "isDeprecated": false,
22890            "deprecationReason": null
22891          },
22892          {
22893            "name": "branchMapping",
22894            "description": null,
22895            "args": [],
22896            "type": {
22897              "kind": "NON_NULL",
22898              "name": null,
22899              "ofType": {
22900                "kind": "SCALAR",
22901                "name": "String",
22902                "ofType": null
22903              }
22904            },
22905            "isDeprecated": false,
22906            "deprecationReason": null
22907          },
22908          {
22909            "name": "createdAt",
22910            "description": null,
22911            "args": [],
22912            "type": {
22913              "kind": "NON_NULL",
22914              "name": null,
22915              "ofType": {
22916                "kind": "SCALAR",
22917                "name": "DateTime",
22918                "ofType": null
22919              }
22920            },
22921            "isDeprecated": false,
22922            "deprecationReason": null
22923          },
22924          {
22925            "name": "id",
22926            "description": null,
22927            "args": [],
22928            "type": {
22929              "kind": "NON_NULL",
22930              "name": null,
22931              "ofType": {
22932                "kind": "SCALAR",
22933                "name": "ID",
22934                "ofType": null
22935              }
22936            },
22937            "isDeprecated": false,
22938            "deprecationReason": null
22939          },
22940          {
22941            "name": "name",
22942            "description": null,
22943            "args": [],
22944            "type": {
22945              "kind": "NON_NULL",
22946              "name": null,
22947              "ofType": {
22948                "kind": "SCALAR",
22949                "name": "String",
22950                "ofType": null
22951              }
22952            },
22953            "isDeprecated": false,
22954            "deprecationReason": null
22955          },
22956          {
22957            "name": "updateBranches",
22958            "description": null,
22959            "args": [
22960              {
22961                "name": "limit",
22962                "description": null,
22963                "type": {
22964                  "kind": "NON_NULL",
22965                  "name": null,
22966                  "ofType": {
22967                    "kind": "SCALAR",
22968                    "name": "Int",
22969                    "ofType": null
22970                  }
22971                },
22972                "defaultValue": null,
22973                "isDeprecated": false,
22974                "deprecationReason": null
22975              },
22976              {
22977                "name": "offset",
22978                "description": null,
22979                "type": {
22980                  "kind": "NON_NULL",
22981                  "name": null,
22982                  "ofType": {
22983                    "kind": "SCALAR",
22984                    "name": "Int",
22985                    "ofType": null
22986                  }
22987                },
22988                "defaultValue": null,
22989                "isDeprecated": false,
22990                "deprecationReason": null
22991              }
22992            ],
22993            "type": {
22994              "kind": "NON_NULL",
22995              "name": null,
22996              "ofType": {
22997                "kind": "LIST",
22998                "name": null,
22999                "ofType": {
23000                  "kind": "NON_NULL",
23001                  "name": null,
23002                  "ofType": {
23003                    "kind": "OBJECT",
23004                    "name": "UpdateBranch",
23005                    "ofType": null
23006                  }
23007                }
23008              }
23009            },
23010            "isDeprecated": false,
23011            "deprecationReason": null
23012          },
23013          {
23014            "name": "updatedAt",
23015            "description": null,
23016            "args": [],
23017            "type": {
23018              "kind": "NON_NULL",
23019              "name": null,
23020              "ofType": {
23021                "kind": "SCALAR",
23022                "name": "DateTime",
23023                "ofType": null
23024              }
23025            },
23026            "isDeprecated": false,
23027            "deprecationReason": null
23028          }
23029        ],
23030        "inputFields": null,
23031        "interfaces": [],
23032        "enumValues": null,
23033        "possibleTypes": null
23034      },
23035      {
23036        "kind": "OBJECT",
23037        "name": "UpdateChannelMutation",
23038        "description": null,
23039        "fields": [
23040          {
23041            "name": "createUpdateChannelForApp",
23042            "description": "Create an EAS channel for an app.\n\nIn order to work with GraphQL formatting, the branchMapping should be a\nstringified JSON supplied to the mutation as a variable.",
23043            "args": [
23044              {
23045                "name": "appId",
23046                "description": null,
23047                "type": {
23048                  "kind": "NON_NULL",
23049                  "name": null,
23050                  "ofType": {
23051                    "kind": "SCALAR",
23052                    "name": "ID",
23053                    "ofType": null
23054                  }
23055                },
23056                "defaultValue": null,
23057                "isDeprecated": false,
23058                "deprecationReason": null
23059              },
23060              {
23061                "name": "branchMapping",
23062                "description": null,
23063                "type": {
23064                  "kind": "SCALAR",
23065                  "name": "String",
23066                  "ofType": null
23067                },
23068                "defaultValue": null,
23069                "isDeprecated": false,
23070                "deprecationReason": null
23071              },
23072              {
23073                "name": "name",
23074                "description": null,
23075                "type": {
23076                  "kind": "NON_NULL",
23077                  "name": null,
23078                  "ofType": {
23079                    "kind": "SCALAR",
23080                    "name": "String",
23081                    "ofType": null
23082                  }
23083                },
23084                "defaultValue": null,
23085                "isDeprecated": false,
23086                "deprecationReason": null
23087              }
23088            ],
23089            "type": {
23090              "kind": "NON_NULL",
23091              "name": null,
23092              "ofType": {
23093                "kind": "OBJECT",
23094                "name": "UpdateChannel",
23095                "ofType": null
23096              }
23097            },
23098            "isDeprecated": false,
23099            "deprecationReason": null
23100          },
23101          {
23102            "name": "deleteUpdateChannel",
23103            "description": "delete an EAS channel that doesn't point to any branches",
23104            "args": [
23105              {
23106                "name": "channelId",
23107                "description": null,
23108                "type": {
23109                  "kind": "NON_NULL",
23110                  "name": null,
23111                  "ofType": {
23112                    "kind": "SCALAR",
23113                    "name": "ID",
23114                    "ofType": null
23115                  }
23116                },
23117                "defaultValue": null,
23118                "isDeprecated": false,
23119                "deprecationReason": null
23120              }
23121            ],
23122            "type": {
23123              "kind": "NON_NULL",
23124              "name": null,
23125              "ofType": {
23126                "kind": "OBJECT",
23127                "name": "DeleteUpdateChannelResult",
23128                "ofType": null
23129              }
23130            },
23131            "isDeprecated": false,
23132            "deprecationReason": null
23133          },
23134          {
23135            "name": "editUpdateChannel",
23136            "description": "Edit an EAS channel.\n\nIn order to work with GraphQL formatting, the branchMapping should be a\nstringified JSON supplied to the mutation as a variable.",
23137            "args": [
23138              {
23139                "name": "branchMapping",
23140                "description": null,
23141                "type": {
23142                  "kind": "NON_NULL",
23143                  "name": null,
23144                  "ofType": {
23145                    "kind": "SCALAR",
23146                    "name": "String",
23147                    "ofType": null
23148                  }
23149                },
23150                "defaultValue": null,
23151                "isDeprecated": false,
23152                "deprecationReason": null
23153              },
23154              {
23155                "name": "channelId",
23156                "description": null,
23157                "type": {
23158                  "kind": "NON_NULL",
23159                  "name": null,
23160                  "ofType": {
23161                    "kind": "SCALAR",
23162                    "name": "ID",
23163                    "ofType": null
23164                  }
23165                },
23166                "defaultValue": null,
23167                "isDeprecated": false,
23168                "deprecationReason": null
23169              }
23170            ],
23171            "type": {
23172              "kind": "NON_NULL",
23173              "name": null,
23174              "ofType": {
23175                "kind": "OBJECT",
23176                "name": "UpdateChannel",
23177                "ofType": null
23178              }
23179            },
23180            "isDeprecated": false,
23181            "deprecationReason": null
23182          }
23183        ],
23184        "inputFields": null,
23185        "interfaces": [],
23186        "enumValues": null,
23187        "possibleTypes": null
23188      },
23189      {
23190        "kind": "INPUT_OBJECT",
23191        "name": "UpdateInfoGroup",
23192        "description": null,
23193        "fields": null,
23194        "inputFields": [
23195          {
23196            "name": "android",
23197            "description": null,
23198            "type": {
23199              "kind": "INPUT_OBJECT",
23200              "name": "PartialManifest",
23201              "ofType": null
23202            },
23203            "defaultValue": null,
23204            "isDeprecated": false,
23205            "deprecationReason": null
23206          },
23207          {
23208            "name": "ios",
23209            "description": null,
23210            "type": {
23211              "kind": "INPUT_OBJECT",
23212              "name": "PartialManifest",
23213              "ofType": null
23214            },
23215            "defaultValue": null,
23216            "isDeprecated": false,
23217            "deprecationReason": null
23218          },
23219          {
23220            "name": "web",
23221            "description": null,
23222            "type": {
23223              "kind": "INPUT_OBJECT",
23224              "name": "PartialManifest",
23225              "ofType": null
23226            },
23227            "defaultValue": null,
23228            "isDeprecated": false,
23229            "deprecationReason": null
23230          }
23231        ],
23232        "interfaces": null,
23233        "enumValues": null,
23234        "possibleTypes": null
23235      },
23236      {
23237        "kind": "OBJECT",
23238        "name": "UpdateMutation",
23239        "description": null,
23240        "fields": [
23241          {
23242            "name": "deleteUpdateGroup",
23243            "description": "Delete an EAS update group",
23244            "args": [
23245              {
23246                "name": "group",
23247                "description": null,
23248                "type": {
23249                  "kind": "NON_NULL",
23250                  "name": null,
23251                  "ofType": {
23252                    "kind": "SCALAR",
23253                    "name": "ID",
23254                    "ofType": null
23255                  }
23256                },
23257                "defaultValue": null,
23258                "isDeprecated": false,
23259                "deprecationReason": null
23260              }
23261            ],
23262            "type": {
23263              "kind": "NON_NULL",
23264              "name": null,
23265              "ofType": {
23266                "kind": "OBJECT",
23267                "name": "DeleteUpdateGroupResult",
23268                "ofType": null
23269              }
23270            },
23271            "isDeprecated": false,
23272            "deprecationReason": null
23273          },
23274          {
23275            "name": "setCodeSigningInfo",
23276            "description": "Set code signing info for an update",
23277            "args": [
23278              {
23279                "name": "codeSigningInfo",
23280                "description": null,
23281                "type": {
23282                  "kind": "NON_NULL",
23283                  "name": null,
23284                  "ofType": {
23285                    "kind": "INPUT_OBJECT",
23286                    "name": "CodeSigningInfoInput",
23287                    "ofType": null
23288                  }
23289                },
23290                "defaultValue": null,
23291                "isDeprecated": false,
23292                "deprecationReason": null
23293              },
23294              {
23295                "name": "updateId",
23296                "description": null,
23297                "type": {
23298                  "kind": "NON_NULL",
23299                  "name": null,
23300                  "ofType": {
23301                    "kind": "SCALAR",
23302                    "name": "ID",
23303                    "ofType": null
23304                  }
23305                },
23306                "defaultValue": null,
23307                "isDeprecated": false,
23308                "deprecationReason": null
23309              }
23310            ],
23311            "type": {
23312              "kind": "NON_NULL",
23313              "name": null,
23314              "ofType": {
23315                "kind": "OBJECT",
23316                "name": "Update",
23317                "ofType": null
23318              }
23319            },
23320            "isDeprecated": false,
23321            "deprecationReason": null
23322          }
23323        ],
23324        "inputFields": null,
23325        "interfaces": [],
23326        "enumValues": null,
23327        "possibleTypes": null
23328      },
23329      {
23330        "kind": "INPUT_OBJECT",
23331        "name": "UpdatesFilter",
23332        "description": null,
23333        "fields": null,
23334        "inputFields": [
23335          {
23336            "name": "platform",
23337            "description": null,
23338            "type": {
23339              "kind": "ENUM",
23340              "name": "AppPlatform",
23341              "ofType": null
23342            },
23343            "defaultValue": null,
23344            "isDeprecated": false,
23345            "deprecationReason": null
23346          },
23347          {
23348            "name": "runtimeVersions",
23349            "description": null,
23350            "type": {
23351              "kind": "LIST",
23352              "name": null,
23353              "ofType": {
23354                "kind": "NON_NULL",
23355                "name": null,
23356                "ofType": {
23357                  "kind": "SCALAR",
23358                  "name": "String",
23359                  "ofType": null
23360                }
23361              }
23362            },
23363            "defaultValue": null,
23364            "isDeprecated": false,
23365            "deprecationReason": null
23366          }
23367        ],
23368        "interfaces": null,
23369        "enumValues": null,
23370        "possibleTypes": null
23371      },
23372      {
23373        "kind": "SCALAR",
23374        "name": "Upload",
23375        "description": "The `Upload` scalar type represents a file upload.",
23376        "fields": null,
23377        "inputFields": null,
23378        "interfaces": null,
23379        "enumValues": null,
23380        "possibleTypes": null
23381      },
23382      {
23383        "kind": "OBJECT",
23384        "name": "UploadSession",
23385        "description": null,
23386        "fields": [
23387          {
23388            "name": "createUploadSession",
23389            "description": "Create an Upload Session",
23390            "args": [
23391              {
23392                "name": "type",
23393                "description": null,
23394                "type": {
23395                  "kind": "NON_NULL",
23396                  "name": null,
23397                  "ofType": {
23398                    "kind": "ENUM",
23399                    "name": "UploadSessionType",
23400                    "ofType": null
23401                  }
23402                },
23403                "defaultValue": null,
23404                "isDeprecated": false,
23405                "deprecationReason": null
23406              }
23407            ],
23408            "type": {
23409              "kind": "NON_NULL",
23410              "name": null,
23411              "ofType": {
23412                "kind": "SCALAR",
23413                "name": "JSONObject",
23414                "ofType": null
23415              }
23416            },
23417            "isDeprecated": false,
23418            "deprecationReason": null
23419          }
23420        ],
23421        "inputFields": null,
23422        "interfaces": [],
23423        "enumValues": null,
23424        "possibleTypes": null
23425      },
23426      {
23427        "kind": "ENUM",
23428        "name": "UploadSessionType",
23429        "description": null,
23430        "fields": null,
23431        "inputFields": null,
23432        "interfaces": null,
23433        "enumValues": [
23434          {
23435            "name": "EAS_BUILD_PROJECT_SOURCES",
23436            "description": null,
23437            "isDeprecated": false,
23438            "deprecationReason": null
23439          },
23440          {
23441            "name": "EAS_SUBMIT_APP_ARCHIVE",
23442            "description": null,
23443            "isDeprecated": false,
23444            "deprecationReason": null
23445          }
23446        ],
23447        "possibleTypes": null
23448      },
23449      {
23450        "kind": "OBJECT",
23451        "name": "UsageMetricTotal",
23452        "description": null,
23453        "fields": [
23454          {
23455            "name": "billingPeriod",
23456            "description": null,
23457            "args": [],
23458            "type": {
23459              "kind": "NON_NULL",
23460              "name": null,
23461              "ofType": {
23462                "kind": "OBJECT",
23463                "name": "BillingPeriod",
23464                "ofType": null
23465              }
23466            },
23467            "isDeprecated": false,
23468            "deprecationReason": null
23469          },
23470          {
23471            "name": "id",
23472            "description": null,
23473            "args": [],
23474            "type": {
23475              "kind": "NON_NULL",
23476              "name": null,
23477              "ofType": {
23478                "kind": "SCALAR",
23479                "name": "ID",
23480                "ofType": null
23481              }
23482            },
23483            "isDeprecated": false,
23484            "deprecationReason": null
23485          },
23486          {
23487            "name": "overageMetrics",
23488            "description": null,
23489            "args": [],
23490            "type": {
23491              "kind": "NON_NULL",
23492              "name": null,
23493              "ofType": {
23494                "kind": "LIST",
23495                "name": null,
23496                "ofType": {
23497                  "kind": "NON_NULL",
23498                  "name": null,
23499                  "ofType": {
23500                    "kind": "OBJECT",
23501                    "name": "AccountUsageMetricAndCost",
23502                    "ofType": null
23503                  }
23504                }
23505              }
23506            },
23507            "isDeprecated": false,
23508            "deprecationReason": null
23509          },
23510          {
23511            "name": "planMetrics",
23512            "description": null,
23513            "args": [],
23514            "type": {
23515              "kind": "NON_NULL",
23516              "name": null,
23517              "ofType": {
23518                "kind": "LIST",
23519                "name": null,
23520                "ofType": {
23521                  "kind": "NON_NULL",
23522                  "name": null,
23523                  "ofType": {
23524                    "kind": "OBJECT",
23525                    "name": "AccountUsageMetricAndCost",
23526                    "ofType": null
23527                  }
23528                }
23529              }
23530            },
23531            "isDeprecated": false,
23532            "deprecationReason": null
23533          },
23534          {
23535            "name": "totalCost",
23536            "description": "Total cost of overages, in cents",
23537            "args": [],
23538            "type": {
23539              "kind": "NON_NULL",
23540              "name": null,
23541              "ofType": {
23542                "kind": "SCALAR",
23543                "name": "Float",
23544                "ofType": null
23545              }
23546            },
23547            "isDeprecated": false,
23548            "deprecationReason": null
23549          }
23550        ],
23551        "inputFields": null,
23552        "interfaces": [],
23553        "enumValues": null,
23554        "possibleTypes": null
23555      },
23556      {
23557        "kind": "ENUM",
23558        "name": "UsageMetricType",
23559        "description": null,
23560        "fields": null,
23561        "inputFields": null,
23562        "interfaces": null,
23563        "enumValues": [
23564          {
23565            "name": "BANDWIDTH",
23566            "description": null,
23567            "isDeprecated": false,
23568            "deprecationReason": null
23569          },
23570          {
23571            "name": "REQUEST",
23572            "description": null,
23573            "isDeprecated": false,
23574            "deprecationReason": null
23575          },
23576          {
23577            "name": "USER",
23578            "description": null,
23579            "isDeprecated": false,
23580            "deprecationReason": null
23581          }
23582        ],
23583        "possibleTypes": null
23584      },
23585      {
23586        "kind": "ENUM",
23587        "name": "UsageMetricsGranularity",
23588        "description": null,
23589        "fields": null,
23590        "inputFields": null,
23591        "interfaces": null,
23592        "enumValues": [
23593          {
23594            "name": "DAY",
23595            "description": null,
23596            "isDeprecated": false,
23597            "deprecationReason": null
23598          },
23599          {
23600            "name": "HOUR",
23601            "description": null,
23602            "isDeprecated": false,
23603            "deprecationReason": null
23604          },
23605          {
23606            "name": "MINUTE",
23607            "description": null,
23608            "isDeprecated": false,
23609            "deprecationReason": null
23610          },
23611          {
23612            "name": "TOTAL",
23613            "description": null,
23614            "isDeprecated": false,
23615            "deprecationReason": null
23616          }
23617        ],
23618        "possibleTypes": null
23619      },
23620      {
23621        "kind": "INPUT_OBJECT",
23622        "name": "UsageMetricsTimespan",
23623        "description": null,
23624        "fields": null,
23625        "inputFields": [
23626          {
23627            "name": "end",
23628            "description": null,
23629            "type": {
23630              "kind": "NON_NULL",
23631              "name": null,
23632              "ofType": {
23633                "kind": "SCALAR",
23634                "name": "DateTime",
23635                "ofType": null
23636              }
23637            },
23638            "defaultValue": null,
23639            "isDeprecated": false,
23640            "deprecationReason": null
23641          },
23642          {
23643            "name": "start",
23644            "description": null,
23645            "type": {
23646              "kind": "NON_NULL",
23647              "name": null,
23648              "ofType": {
23649                "kind": "SCALAR",
23650                "name": "DateTime",
23651                "ofType": null
23652              }
23653            },
23654            "defaultValue": null,
23655            "isDeprecated": false,
23656            "deprecationReason": null
23657          }
23658        ],
23659        "interfaces": null,
23660        "enumValues": null,
23661        "possibleTypes": null
23662      },
23663      {
23664        "kind": "OBJECT",
23665        "name": "User",
23666        "description": "Represents a human (not robot) actor.",
23667        "fields": [
23668          {
23669            "name": "accessTokens",
23670            "description": "Access Tokens belonging to this actor",
23671            "args": [],
23672            "type": {
23673              "kind": "NON_NULL",
23674              "name": null,
23675              "ofType": {
23676                "kind": "LIST",
23677                "name": null,
23678                "ofType": {
23679                  "kind": "NON_NULL",
23680                  "name": null,
23681                  "ofType": {
23682                    "kind": "OBJECT",
23683                    "name": "AccessToken",
23684                    "ofType": null
23685                  }
23686                }
23687              }
23688            },
23689            "isDeprecated": false,
23690            "deprecationReason": null
23691          },
23692          {
23693            "name": "accounts",
23694            "description": null,
23695            "args": [],
23696            "type": {
23697              "kind": "NON_NULL",
23698              "name": null,
23699              "ofType": {
23700                "kind": "LIST",
23701                "name": null,
23702                "ofType": {
23703                  "kind": "NON_NULL",
23704                  "name": null,
23705                  "ofType": {
23706                    "kind": "OBJECT",
23707                    "name": "Account",
23708                    "ofType": null
23709                  }
23710                }
23711              }
23712            },
23713            "isDeprecated": false,
23714            "deprecationReason": null
23715          },
23716          {
23717            "name": "activityTimelineProjectActivities",
23718            "description": "Coalesced project activity for all apps belonging to all accounts this user belongs to. Only resolves for the viewer.",
23719            "args": [
23720              {
23721                "name": "createdBefore",
23722                "description": " Offset the query ",
23723                "type": {
23724                  "kind": "SCALAR",
23725                  "name": "DateTime",
23726                  "ofType": null
23727                },
23728                "defaultValue": null,
23729                "isDeprecated": false,
23730                "deprecationReason": null
23731              },
23732              {
23733                "name": "filterTypes",
23734                "description": " Types of objects to filter ",
23735                "type": {
23736                  "kind": "LIST",
23737                  "name": null,
23738                  "ofType": {
23739                    "kind": "NON_NULL",
23740                    "name": null,
23741                    "ofType": {
23742                      "kind": "ENUM",
23743                      "name": "ActivityTimelineProjectActivityType",
23744                      "ofType": null
23745                    }
23746                  }
23747                },
23748                "defaultValue": null,
23749                "isDeprecated": false,
23750                "deprecationReason": null
23751              },
23752              {
23753                "name": "limit",
23754                "description": null,
23755                "type": {
23756                  "kind": "NON_NULL",
23757                  "name": null,
23758                  "ofType": {
23759                    "kind": "SCALAR",
23760                    "name": "Int",
23761                    "ofType": null
23762                  }
23763                },
23764                "defaultValue": null,
23765                "isDeprecated": false,
23766                "deprecationReason": null
23767              }
23768            ],
23769            "type": {
23770              "kind": "NON_NULL",
23771              "name": null,
23772              "ofType": {
23773                "kind": "LIST",
23774                "name": null,
23775                "ofType": {
23776                  "kind": "NON_NULL",
23777                  "name": null,
23778                  "ofType": {
23779                    "kind": "INTERFACE",
23780                    "name": "ActivityTimelineProjectActivity",
23781                    "ofType": null
23782                  }
23783                }
23784              }
23785            },
23786            "isDeprecated": false,
23787            "deprecationReason": null
23788          },
23789          {
23790            "name": "appCount",
23791            "description": null,
23792            "args": [],
23793            "type": {
23794              "kind": "NON_NULL",
23795              "name": null,
23796              "ofType": {
23797                "kind": "SCALAR",
23798                "name": "Int",
23799                "ofType": null
23800              }
23801            },
23802            "isDeprecated": false,
23803            "deprecationReason": null
23804          },
23805          {
23806            "name": "appetizeCode",
23807            "description": null,
23808            "args": [],
23809            "type": {
23810              "kind": "SCALAR",
23811              "name": "String",
23812              "ofType": null
23813            },
23814            "isDeprecated": false,
23815            "deprecationReason": null
23816          },
23817          {
23818            "name": "apps",
23819            "description": "Apps this user has published",
23820            "args": [
23821              {
23822                "name": "includeUnpublished",
23823                "description": null,
23824                "type": {
23825                  "kind": "SCALAR",
23826                  "name": "Boolean",
23827                  "ofType": null
23828                },
23829                "defaultValue": null,
23830                "isDeprecated": false,
23831                "deprecationReason": null
23832              },
23833              {
23834                "name": "limit",
23835                "description": null,
23836                "type": {
23837                  "kind": "NON_NULL",
23838                  "name": null,
23839                  "ofType": {
23840                    "kind": "SCALAR",
23841                    "name": "Int",
23842                    "ofType": null
23843                  }
23844                },
23845                "defaultValue": null,
23846                "isDeprecated": false,
23847                "deprecationReason": null
23848              },
23849              {
23850                "name": "offset",
23851                "description": null,
23852                "type": {
23853                  "kind": "NON_NULL",
23854                  "name": null,
23855                  "ofType": {
23856                    "kind": "SCALAR",
23857                    "name": "Int",
23858                    "ofType": null
23859                  }
23860                },
23861                "defaultValue": null,
23862                "isDeprecated": false,
23863                "deprecationReason": null
23864              }
23865            ],
23866            "type": {
23867              "kind": "NON_NULL",
23868              "name": null,
23869              "ofType": {
23870                "kind": "LIST",
23871                "name": null,
23872                "ofType": {
23873                  "kind": "NON_NULL",
23874                  "name": null,
23875                  "ofType": {
23876                    "kind": "OBJECT",
23877                    "name": "App",
23878                    "ofType": null
23879                  }
23880                }
23881              }
23882            },
23883            "isDeprecated": false,
23884            "deprecationReason": null
23885          },
23886          {
23887            "name": "created",
23888            "description": null,
23889            "args": [],
23890            "type": {
23891              "kind": "NON_NULL",
23892              "name": null,
23893              "ofType": {
23894                "kind": "SCALAR",
23895                "name": "DateTime",
23896                "ofType": null
23897              }
23898            },
23899            "isDeprecated": false,
23900            "deprecationReason": null
23901          },
23902          {
23903            "name": "displayName",
23904            "description": null,
23905            "args": [],
23906            "type": {
23907              "kind": "NON_NULL",
23908              "name": null,
23909              "ofType": {
23910                "kind": "SCALAR",
23911                "name": "String",
23912                "ofType": null
23913              }
23914            },
23915            "isDeprecated": false,
23916            "deprecationReason": null
23917          },
23918          {
23919            "name": "email",
23920            "description": null,
23921            "args": [],
23922            "type": {
23923              "kind": "SCALAR",
23924              "name": "String",
23925              "ofType": null
23926            },
23927            "isDeprecated": false,
23928            "deprecationReason": null
23929          },
23930          {
23931            "name": "emailVerified",
23932            "description": null,
23933            "args": [],
23934            "type": {
23935              "kind": "NON_NULL",
23936              "name": null,
23937              "ofType": {
23938                "kind": "SCALAR",
23939                "name": "Boolean",
23940                "ofType": null
23941              }
23942            },
23943            "isDeprecated": false,
23944            "deprecationReason": null
23945          },
23946          {
23947            "name": "featureGates",
23948            "description": "Server feature gate values for this actor, optionally filtering by desired gates.\nOnly resolves for the viewer.",
23949            "args": [
23950              {
23951                "name": "filter",
23952                "description": null,
23953                "type": {
23954                  "kind": "LIST",
23955                  "name": null,
23956                  "ofType": {
23957                    "kind": "NON_NULL",
23958                    "name": null,
23959                    "ofType": {
23960                      "kind": "SCALAR",
23961                      "name": "String",
23962                      "ofType": null
23963                    }
23964                  }
23965                },
23966                "defaultValue": null,
23967                "isDeprecated": false,
23968                "deprecationReason": null
23969              }
23970            ],
23971            "type": {
23972              "kind": "NON_NULL",
23973              "name": null,
23974              "ofType": {
23975                "kind": "SCALAR",
23976                "name": "JSONObject",
23977                "ofType": null
23978              }
23979            },
23980            "isDeprecated": false,
23981            "deprecationReason": null
23982          },
23983          {
23984            "name": "firstName",
23985            "description": null,
23986            "args": [],
23987            "type": {
23988              "kind": "SCALAR",
23989              "name": "String",
23990              "ofType": null
23991            },
23992            "isDeprecated": false,
23993            "deprecationReason": null
23994          },
23995          {
23996            "name": "fullName",
23997            "description": null,
23998            "args": [],
23999            "type": {
24000              "kind": "SCALAR",
24001              "name": "String",
24002              "ofType": null
24003            },
24004            "isDeprecated": false,
24005            "deprecationReason": null
24006          },
24007          {
24008            "name": "githubUsername",
24009            "description": null,
24010            "args": [],
24011            "type": {
24012              "kind": "SCALAR",
24013              "name": "String",
24014              "ofType": null
24015            },
24016            "isDeprecated": false,
24017            "deprecationReason": null
24018          },
24019          {
24020            "name": "hasPendingUserInvitations",
24021            "description": "Whether this user has any pending user invitations. Only resolves for the viewer.",
24022            "args": [],
24023            "type": {
24024              "kind": "NON_NULL",
24025              "name": null,
24026              "ofType": {
24027                "kind": "SCALAR",
24028                "name": "Boolean",
24029                "ofType": null
24030              }
24031            },
24032            "isDeprecated": false,
24033            "deprecationReason": null
24034          },
24035          {
24036            "name": "id",
24037            "description": null,
24038            "args": [],
24039            "type": {
24040              "kind": "NON_NULL",
24041              "name": null,
24042              "ofType": {
24043                "kind": "SCALAR",
24044                "name": "ID",
24045                "ofType": null
24046              }
24047            },
24048            "isDeprecated": false,
24049            "deprecationReason": null
24050          },
24051          {
24052            "name": "industry",
24053            "description": null,
24054            "args": [],
24055            "type": {
24056              "kind": "SCALAR",
24057              "name": "String",
24058              "ofType": null
24059            },
24060            "isDeprecated": false,
24061            "deprecationReason": null
24062          },
24063          {
24064            "name": "isEmailUnsubscribed",
24065            "description": null,
24066            "args": [],
24067            "type": {
24068              "kind": "NON_NULL",
24069              "name": null,
24070              "ofType": {
24071                "kind": "SCALAR",
24072                "name": "Boolean",
24073                "ofType": null
24074              }
24075            },
24076            "isDeprecated": true,
24077            "deprecationReason": "No longer supported"
24078          },
24079          {
24080            "name": "isExpoAdmin",
24081            "description": null,
24082            "args": [],
24083            "type": {
24084              "kind": "NON_NULL",
24085              "name": null,
24086              "ofType": {
24087                "kind": "SCALAR",
24088                "name": "Boolean",
24089                "ofType": null
24090              }
24091            },
24092            "isDeprecated": false,
24093            "deprecationReason": null
24094          },
24095          {
24096            "name": "isLegacy",
24097            "description": null,
24098            "args": [],
24099            "type": {
24100              "kind": "SCALAR",
24101              "name": "Boolean",
24102              "ofType": null
24103            },
24104            "isDeprecated": true,
24105            "deprecationReason": "No longer supported"
24106          },
24107          {
24108            "name": "isOnboarded",
24109            "description": null,
24110            "args": [],
24111            "type": {
24112              "kind": "SCALAR",
24113              "name": "Boolean",
24114              "ofType": null
24115            },
24116            "isDeprecated": true,
24117            "deprecationReason": "No longer supported"
24118          },
24119          {
24120            "name": "isSecondFactorAuthenticationEnabled",
24121            "description": null,
24122            "args": [],
24123            "type": {
24124              "kind": "NON_NULL",
24125              "name": null,
24126              "ofType": {
24127                "kind": "SCALAR",
24128                "name": "Boolean",
24129                "ofType": null
24130              }
24131            },
24132            "isDeprecated": false,
24133            "deprecationReason": null
24134          },
24135          {
24136            "name": "lastLogin",
24137            "description": null,
24138            "args": [],
24139            "type": {
24140              "kind": "SCALAR",
24141              "name": "DateTime",
24142              "ofType": null
24143            },
24144            "isDeprecated": true,
24145            "deprecationReason": "No longer supported"
24146          },
24147          {
24148            "name": "lastName",
24149            "description": null,
24150            "args": [],
24151            "type": {
24152              "kind": "SCALAR",
24153              "name": "String",
24154              "ofType": null
24155            },
24156            "isDeprecated": false,
24157            "deprecationReason": null
24158          },
24159          {
24160            "name": "lastPasswordReset",
24161            "description": null,
24162            "args": [],
24163            "type": {
24164              "kind": "SCALAR",
24165              "name": "DateTime",
24166              "ofType": null
24167            },
24168            "isDeprecated": true,
24169            "deprecationReason": "No longer supported"
24170          },
24171          {
24172            "name": "likes",
24173            "description": null,
24174            "args": [
24175              {
24176                "name": "limit",
24177                "description": null,
24178                "type": {
24179                  "kind": "NON_NULL",
24180                  "name": null,
24181                  "ofType": {
24182                    "kind": "SCALAR",
24183                    "name": "Int",
24184                    "ofType": null
24185                  }
24186                },
24187                "defaultValue": null,
24188                "isDeprecated": false,
24189                "deprecationReason": null
24190              },
24191              {
24192                "name": "offset",
24193                "description": null,
24194                "type": {
24195                  "kind": "NON_NULL",
24196                  "name": null,
24197                  "ofType": {
24198                    "kind": "SCALAR",
24199                    "name": "Int",
24200                    "ofType": null
24201                  }
24202                },
24203                "defaultValue": null,
24204                "isDeprecated": false,
24205                "deprecationReason": null
24206              }
24207            ],
24208            "type": {
24209              "kind": "LIST",
24210              "name": null,
24211              "ofType": {
24212                "kind": "OBJECT",
24213                "name": "App",
24214                "ofType": null
24215              }
24216            },
24217            "isDeprecated": true,
24218            "deprecationReason": "'likes' have been deprecated."
24219          },
24220          {
24221            "name": "location",
24222            "description": null,
24223            "args": [],
24224            "type": {
24225              "kind": "SCALAR",
24226              "name": "String",
24227              "ofType": null
24228            },
24229            "isDeprecated": false,
24230            "deprecationReason": null
24231          },
24232          {
24233            "name": "pendingUserInvitations",
24234            "description": "Pending UserInvitations for this user. Only resolves for the viewer.",
24235            "args": [],
24236            "type": {
24237              "kind": "NON_NULL",
24238              "name": null,
24239              "ofType": {
24240                "kind": "LIST",
24241                "name": null,
24242                "ofType": {
24243                  "kind": "NON_NULL",
24244                  "name": null,
24245                  "ofType": {
24246                    "kind": "OBJECT",
24247                    "name": "UserInvitation",
24248                    "ofType": null
24249                  }
24250                }
24251              }
24252            },
24253            "isDeprecated": false,
24254            "deprecationReason": null
24255          },
24256          {
24257            "name": "primaryAccount",
24258            "description": "Associated accounts",
24259            "args": [],
24260            "type": {
24261              "kind": "NON_NULL",
24262              "name": null,
24263              "ofType": {
24264                "kind": "OBJECT",
24265                "name": "Account",
24266                "ofType": null
24267              }
24268            },
24269            "isDeprecated": false,
24270            "deprecationReason": null
24271          },
24272          {
24273            "name": "profilePhoto",
24274            "description": null,
24275            "args": [],
24276            "type": {
24277              "kind": "NON_NULL",
24278              "name": null,
24279              "ofType": {
24280                "kind": "SCALAR",
24281                "name": "String",
24282                "ofType": null
24283              }
24284            },
24285            "isDeprecated": false,
24286            "deprecationReason": null
24287          },
24288          {
24289            "name": "secondFactorDevices",
24290            "description": "Get all certified second factor authentication methods",
24291            "args": [],
24292            "type": {
24293              "kind": "NON_NULL",
24294              "name": null,
24295              "ofType": {
24296                "kind": "LIST",
24297                "name": null,
24298                "ofType": {
24299                  "kind": "NON_NULL",
24300                  "name": null,
24301                  "ofType": {
24302                    "kind": "OBJECT",
24303                    "name": "UserSecondFactorDevice",
24304                    "ofType": null
24305                  }
24306                }
24307              }
24308            },
24309            "isDeprecated": false,
24310            "deprecationReason": null
24311          },
24312          {
24313            "name": "snacks",
24314            "description": "Snacks associated with this account",
24315            "args": [
24316              {
24317                "name": "limit",
24318                "description": null,
24319                "type": {
24320                  "kind": "NON_NULL",
24321                  "name": null,
24322                  "ofType": {
24323                    "kind": "SCALAR",
24324                    "name": "Int",
24325                    "ofType": null
24326                  }
24327                },
24328                "defaultValue": null,
24329                "isDeprecated": false,
24330                "deprecationReason": null
24331              },
24332              {
24333                "name": "offset",
24334                "description": null,
24335                "type": {
24336                  "kind": "NON_NULL",
24337                  "name": null,
24338                  "ofType": {
24339                    "kind": "SCALAR",
24340                    "name": "Int",
24341                    "ofType": null
24342                  }
24343                },
24344                "defaultValue": null,
24345                "isDeprecated": false,
24346                "deprecationReason": null
24347              }
24348            ],
24349            "type": {
24350              "kind": "NON_NULL",
24351              "name": null,
24352              "ofType": {
24353                "kind": "LIST",
24354                "name": null,
24355                "ofType": {
24356                  "kind": "NON_NULL",
24357                  "name": null,
24358                  "ofType": {
24359                    "kind": "OBJECT",
24360                    "name": "Snack",
24361                    "ofType": null
24362                  }
24363                }
24364              }
24365            },
24366            "isDeprecated": false,
24367            "deprecationReason": null
24368          },
24369          {
24370            "name": "twitterUsername",
24371            "description": null,
24372            "args": [],
24373            "type": {
24374              "kind": "SCALAR",
24375              "name": "String",
24376              "ofType": null
24377            },
24378            "isDeprecated": false,
24379            "deprecationReason": null
24380          },
24381          {
24382            "name": "username",
24383            "description": null,
24384            "args": [],
24385            "type": {
24386              "kind": "NON_NULL",
24387              "name": null,
24388              "ofType": {
24389                "kind": "SCALAR",
24390                "name": "String",
24391                "ofType": null
24392              }
24393            },
24394            "isDeprecated": false,
24395            "deprecationReason": null
24396          },
24397          {
24398            "name": "wasLegacy",
24399            "description": null,
24400            "args": [],
24401            "type": {
24402              "kind": "SCALAR",
24403              "name": "Boolean",
24404              "ofType": null
24405            },
24406            "isDeprecated": true,
24407            "deprecationReason": "No longer supported"
24408          }
24409        ],
24410        "inputFields": null,
24411        "interfaces": [
24412          {
24413            "kind": "INTERFACE",
24414            "name": "Actor",
24415            "ofType": null
24416          }
24417        ],
24418        "enumValues": null,
24419        "possibleTypes": null
24420      },
24421      {
24422        "kind": "INPUT_OBJECT",
24423        "name": "UserDataInput",
24424        "description": null,
24425        "fields": null,
24426        "inputFields": [
24427          {
24428            "name": "appetizeCode",
24429            "description": null,
24430            "type": {
24431              "kind": "SCALAR",
24432              "name": "String",
24433              "ofType": null
24434            },
24435            "defaultValue": null,
24436            "isDeprecated": false,
24437            "deprecationReason": null
24438          },
24439          {
24440            "name": "email",
24441            "description": null,
24442            "type": {
24443              "kind": "SCALAR",
24444              "name": "String",
24445              "ofType": null
24446            },
24447            "defaultValue": null,
24448            "isDeprecated": false,
24449            "deprecationReason": null
24450          },
24451          {
24452            "name": "firstName",
24453            "description": null,
24454            "type": {
24455              "kind": "SCALAR",
24456              "name": "String",
24457              "ofType": null
24458            },
24459            "defaultValue": null,
24460            "isDeprecated": false,
24461            "deprecationReason": null
24462          },
24463          {
24464            "name": "fullName",
24465            "description": null,
24466            "type": {
24467              "kind": "SCALAR",
24468              "name": "String",
24469              "ofType": null
24470            },
24471            "defaultValue": null,
24472            "isDeprecated": false,
24473            "deprecationReason": null
24474          },
24475          {
24476            "name": "githubUsername",
24477            "description": null,
24478            "type": {
24479              "kind": "SCALAR",
24480              "name": "String",
24481              "ofType": null
24482            },
24483            "defaultValue": null,
24484            "isDeprecated": false,
24485            "deprecationReason": null
24486          },
24487          {
24488            "name": "id",
24489            "description": null,
24490            "type": {
24491              "kind": "SCALAR",
24492              "name": "ID",
24493              "ofType": null
24494            },
24495            "defaultValue": null,
24496            "isDeprecated": false,
24497            "deprecationReason": null
24498          },
24499          {
24500            "name": "industry",
24501            "description": null,
24502            "type": {
24503              "kind": "SCALAR",
24504              "name": "String",
24505              "ofType": null
24506            },
24507            "defaultValue": null,
24508            "isDeprecated": false,
24509            "deprecationReason": null
24510          },
24511          {
24512            "name": "isEmailUnsubscribed",
24513            "description": null,
24514            "type": {
24515              "kind": "SCALAR",
24516              "name": "Boolean",
24517              "ofType": null
24518            },
24519            "defaultValue": null,
24520            "isDeprecated": false,
24521            "deprecationReason": null
24522          },
24523          {
24524            "name": "isLegacy",
24525            "description": null,
24526            "type": {
24527              "kind": "SCALAR",
24528              "name": "Boolean",
24529              "ofType": null
24530            },
24531            "defaultValue": null,
24532            "isDeprecated": false,
24533            "deprecationReason": null
24534          },
24535          {
24536            "name": "isOnboarded",
24537            "description": null,
24538            "type": {
24539              "kind": "SCALAR",
24540              "name": "Boolean",
24541              "ofType": null
24542            },
24543            "defaultValue": null,
24544            "isDeprecated": false,
24545            "deprecationReason": null
24546          },
24547          {
24548            "name": "lastName",
24549            "description": null,
24550            "type": {
24551              "kind": "SCALAR",
24552              "name": "String",
24553              "ofType": null
24554            },
24555            "defaultValue": null,
24556            "isDeprecated": false,
24557            "deprecationReason": null
24558          },
24559          {
24560            "name": "location",
24561            "description": null,
24562            "type": {
24563              "kind": "SCALAR",
24564              "name": "String",
24565              "ofType": null
24566            },
24567            "defaultValue": null,
24568            "isDeprecated": false,
24569            "deprecationReason": null
24570          },
24571          {
24572            "name": "profilePhoto",
24573            "description": null,
24574            "type": {
24575              "kind": "SCALAR",
24576              "name": "String",
24577              "ofType": null
24578            },
24579            "defaultValue": null,
24580            "isDeprecated": false,
24581            "deprecationReason": null
24582          },
24583          {
24584            "name": "twitterUsername",
24585            "description": null,
24586            "type": {
24587              "kind": "SCALAR",
24588              "name": "String",
24589              "ofType": null
24590            },
24591            "defaultValue": null,
24592            "isDeprecated": false,
24593            "deprecationReason": null
24594          },
24595          {
24596            "name": "username",
24597            "description": null,
24598            "type": {
24599              "kind": "SCALAR",
24600              "name": "String",
24601              "ofType": null
24602            },
24603            "defaultValue": null,
24604            "isDeprecated": false,
24605            "deprecationReason": null
24606          },
24607          {
24608            "name": "wasLegacy",
24609            "description": null,
24610            "type": {
24611              "kind": "SCALAR",
24612              "name": "Boolean",
24613              "ofType": null
24614            },
24615            "defaultValue": null,
24616            "isDeprecated": false,
24617            "deprecationReason": null
24618          }
24619        ],
24620        "interfaces": null,
24621        "enumValues": null,
24622        "possibleTypes": null
24623      },
24624      {
24625        "kind": "OBJECT",
24626        "name": "UserInvitation",
24627        "description": "An pending invitation sent to an email granting membership on an Account.",
24628        "fields": [
24629          {
24630            "name": "accountName",
24631            "description": null,
24632            "args": [],
24633            "type": {
24634              "kind": "NON_NULL",
24635              "name": null,
24636              "ofType": {
24637                "kind": "SCALAR",
24638                "name": "String",
24639                "ofType": null
24640              }
24641            },
24642            "isDeprecated": false,
24643            "deprecationReason": null
24644          },
24645          {
24646            "name": "created",
24647            "description": null,
24648            "args": [],
24649            "type": {
24650              "kind": "NON_NULL",
24651              "name": null,
24652              "ofType": {
24653                "kind": "SCALAR",
24654                "name": "DateTime",
24655                "ofType": null
24656              }
24657            },
24658            "isDeprecated": false,
24659            "deprecationReason": null
24660          },
24661          {
24662            "name": "email",
24663            "description": "Email to which this invitation was sent",
24664            "args": [],
24665            "type": {
24666              "kind": "NON_NULL",
24667              "name": null,
24668              "ofType": {
24669                "kind": "SCALAR",
24670                "name": "String",
24671                "ofType": null
24672              }
24673            },
24674            "isDeprecated": false,
24675            "deprecationReason": null
24676          },
24677          {
24678            "name": "expires",
24679            "description": null,
24680            "args": [],
24681            "type": {
24682              "kind": "NON_NULL",
24683              "name": null,
24684              "ofType": {
24685                "kind": "SCALAR",
24686                "name": "DateTime",
24687                "ofType": null
24688              }
24689            },
24690            "isDeprecated": false,
24691            "deprecationReason": null
24692          },
24693          {
24694            "name": "id",
24695            "description": null,
24696            "args": [],
24697            "type": {
24698              "kind": "NON_NULL",
24699              "name": null,
24700              "ofType": {
24701                "kind": "SCALAR",
24702                "name": "ID",
24703                "ofType": null
24704              }
24705            },
24706            "isDeprecated": false,
24707            "deprecationReason": null
24708          },
24709          {
24710            "name": "permissions",
24711            "description": "Account permissions to be granted upon acceptance of this invitation",
24712            "args": [],
24713            "type": {
24714              "kind": "NON_NULL",
24715              "name": null,
24716              "ofType": {
24717                "kind": "LIST",
24718                "name": null,
24719                "ofType": {
24720                  "kind": "NON_NULL",
24721                  "name": null,
24722                  "ofType": {
24723                    "kind": "ENUM",
24724                    "name": "Permission",
24725                    "ofType": null
24726                  }
24727                }
24728              }
24729            },
24730            "isDeprecated": false,
24731            "deprecationReason": null
24732          },
24733          {
24734            "name": "role",
24735            "description": "Role to be granted upon acceptance of this invitation",
24736            "args": [],
24737            "type": {
24738              "kind": "NON_NULL",
24739              "name": null,
24740              "ofType": {
24741                "kind": "ENUM",
24742                "name": "Role",
24743                "ofType": null
24744              }
24745            },
24746            "isDeprecated": false,
24747            "deprecationReason": null
24748          }
24749        ],
24750        "inputFields": null,
24751        "interfaces": [],
24752        "enumValues": null,
24753        "possibleTypes": null
24754      },
24755      {
24756        "kind": "OBJECT",
24757        "name": "UserInvitationMutation",
24758        "description": null,
24759        "fields": [
24760          {
24761            "name": "acceptUserInvitationAsViewer",
24762            "description": "Accept UserInvitation by ID. Viewer must have matching email and email must be verified.",
24763            "args": [
24764              {
24765                "name": "id",
24766                "description": null,
24767                "type": {
24768                  "kind": "NON_NULL",
24769                  "name": null,
24770                  "ofType": {
24771                    "kind": "SCALAR",
24772                    "name": "ID",
24773                    "ofType": null
24774                  }
24775                },
24776                "defaultValue": null,
24777                "isDeprecated": false,
24778                "deprecationReason": null
24779              }
24780            ],
24781            "type": {
24782              "kind": "NON_NULL",
24783              "name": null,
24784              "ofType": {
24785                "kind": "OBJECT",
24786                "name": "AcceptUserInvitationResult",
24787                "ofType": null
24788              }
24789            },
24790            "isDeprecated": false,
24791            "deprecationReason": null
24792          },
24793          {
24794            "name": "acceptUserInvitationByTokenAsViewer",
24795            "description": "Accept UserInvitation by token. Note that the viewer's email is not required to match\nthe email on the invitation. If viewer's email does match that of the invitation,\ntheir email will also be verified.",
24796            "args": [
24797              {
24798                "name": "token",
24799                "description": null,
24800                "type": {
24801                  "kind": "NON_NULL",
24802                  "name": null,
24803                  "ofType": {
24804                    "kind": "SCALAR",
24805                    "name": "ID",
24806                    "ofType": null
24807                  }
24808                },
24809                "defaultValue": null,
24810                "isDeprecated": false,
24811                "deprecationReason": null
24812              }
24813            ],
24814            "type": {
24815              "kind": "NON_NULL",
24816              "name": null,
24817              "ofType": {
24818                "kind": "OBJECT",
24819                "name": "AcceptUserInvitationResult",
24820                "ofType": null
24821              }
24822            },
24823            "isDeprecated": false,
24824            "deprecationReason": null
24825          },
24826          {
24827            "name": "createUserInvitationForAccount",
24828            "description": "Create a UserInvitation for an email that when accepted grants\nthe specified permissions on an Account",
24829            "args": [
24830              {
24831                "name": "accountID",
24832                "description": null,
24833                "type": {
24834                  "kind": "NON_NULL",
24835                  "name": null,
24836                  "ofType": {
24837                    "kind": "SCALAR",
24838                    "name": "ID",
24839                    "ofType": null
24840                  }
24841                },
24842                "defaultValue": null,
24843                "isDeprecated": false,
24844                "deprecationReason": null
24845              },
24846              {
24847                "name": "email",
24848                "description": null,
24849                "type": {
24850                  "kind": "NON_NULL",
24851                  "name": null,
24852                  "ofType": {
24853                    "kind": "SCALAR",
24854                    "name": "String",
24855                    "ofType": null
24856                  }
24857                },
24858                "defaultValue": null,
24859                "isDeprecated": false,
24860                "deprecationReason": null
24861              },
24862              {
24863                "name": "permissions",
24864                "description": null,
24865                "type": {
24866                  "kind": "NON_NULL",
24867                  "name": null,
24868                  "ofType": {
24869                    "kind": "LIST",
24870                    "name": null,
24871                    "ofType": {
24872                      "kind": "ENUM",
24873                      "name": "Permission",
24874                      "ofType": null
24875                    }
24876                  }
24877                },
24878                "defaultValue": null,
24879                "isDeprecated": false,
24880                "deprecationReason": null
24881              }
24882            ],
24883            "type": {
24884              "kind": "NON_NULL",
24885              "name": null,
24886              "ofType": {
24887                "kind": "OBJECT",
24888                "name": "UserInvitation",
24889                "ofType": null
24890              }
24891            },
24892            "isDeprecated": false,
24893            "deprecationReason": null
24894          },
24895          {
24896            "name": "deleteUserInvitation",
24897            "description": "Rescind UserInvitation by ID",
24898            "args": [
24899              {
24900                "name": "id",
24901                "description": null,
24902                "type": {
24903                  "kind": "NON_NULL",
24904                  "name": null,
24905                  "ofType": {
24906                    "kind": "SCALAR",
24907                    "name": "ID",
24908                    "ofType": null
24909                  }
24910                },
24911                "defaultValue": null,
24912                "isDeprecated": false,
24913                "deprecationReason": null
24914              }
24915            ],
24916            "type": {
24917              "kind": "NON_NULL",
24918              "name": null,
24919              "ofType": {
24920                "kind": "OBJECT",
24921                "name": "RescindUserInvitationResult",
24922                "ofType": null
24923              }
24924            },
24925            "isDeprecated": false,
24926            "deprecationReason": null
24927          },
24928          {
24929            "name": "deleteUserInvitationByToken",
24930            "description": "Delete UserInvitation by token. Note that the viewer's email is not required to match\nthe email on the invitation.",
24931            "args": [
24932              {
24933                "name": "token",
24934                "description": null,
24935                "type": {
24936                  "kind": "NON_NULL",
24937                  "name": null,
24938                  "ofType": {
24939                    "kind": "SCALAR",
24940                    "name": "ID",
24941                    "ofType": null
24942                  }
24943                },
24944                "defaultValue": null,
24945                "isDeprecated": false,
24946                "deprecationReason": null
24947              }
24948            ],
24949            "type": {
24950              "kind": "NON_NULL",
24951              "name": null,
24952              "ofType": {
24953                "kind": "OBJECT",
24954                "name": "RescindUserInvitationResult",
24955                "ofType": null
24956              }
24957            },
24958            "isDeprecated": false,
24959            "deprecationReason": null
24960          },
24961          {
24962            "name": "resendUserInvitation",
24963            "description": "Re-send UserInivitation by ID",
24964            "args": [
24965              {
24966                "name": "id",
24967                "description": null,
24968                "type": {
24969                  "kind": "NON_NULL",
24970                  "name": null,
24971                  "ofType": {
24972                    "kind": "SCALAR",
24973                    "name": "ID",
24974                    "ofType": null
24975                  }
24976                },
24977                "defaultValue": null,
24978                "isDeprecated": false,
24979                "deprecationReason": null
24980              }
24981            ],
24982            "type": {
24983              "kind": "NON_NULL",
24984              "name": null,
24985              "ofType": {
24986                "kind": "OBJECT",
24987                "name": "UserInvitation",
24988                "ofType": null
24989              }
24990            },
24991            "isDeprecated": false,
24992            "deprecationReason": null
24993          }
24994        ],
24995        "inputFields": null,
24996        "interfaces": [],
24997        "enumValues": null,
24998        "possibleTypes": null
24999      },
25000      {
25001        "kind": "OBJECT",
25002        "name": "UserInvitationPublicData",
25003        "description": "Publicly visible data for a UserInvitation.",
25004        "fields": [
25005          {
25006            "name": "accountName",
25007            "description": null,
25008            "args": [],
25009            "type": {
25010              "kind": "NON_NULL",
25011              "name": null,
25012              "ofType": {
25013                "kind": "SCALAR",
25014                "name": "String",
25015                "ofType": null
25016              }
25017            },
25018            "isDeprecated": false,
25019            "deprecationReason": null
25020          },
25021          {
25022            "name": "created",
25023            "description": null,
25024            "args": [],
25025            "type": {
25026              "kind": "NON_NULL",
25027              "name": null,
25028              "ofType": {
25029                "kind": "SCALAR",
25030                "name": "DateTime",
25031                "ofType": null
25032              }
25033            },
25034            "isDeprecated": false,
25035            "deprecationReason": null
25036          },
25037          {
25038            "name": "email",
25039            "description": null,
25040            "args": [],
25041            "type": {
25042              "kind": "NON_NULL",
25043              "name": null,
25044              "ofType": {
25045                "kind": "SCALAR",
25046                "name": "String",
25047                "ofType": null
25048              }
25049            },
25050            "isDeprecated": false,
25051            "deprecationReason": null
25052          },
25053          {
25054            "name": "expires",
25055            "description": null,
25056            "args": [],
25057            "type": {
25058              "kind": "NON_NULL",
25059              "name": null,
25060              "ofType": {
25061                "kind": "SCALAR",
25062                "name": "DateTime",
25063                "ofType": null
25064              }
25065            },
25066            "isDeprecated": false,
25067            "deprecationReason": null
25068          },
25069          {
25070            "name": "id",
25071            "description": "Email to which this invitation was sent",
25072            "args": [],
25073            "type": {
25074              "kind": "NON_NULL",
25075              "name": null,
25076              "ofType": {
25077                "kind": "SCALAR",
25078                "name": "ID",
25079                "ofType": null
25080              }
25081            },
25082            "isDeprecated": false,
25083            "deprecationReason": null
25084          }
25085        ],
25086        "inputFields": null,
25087        "interfaces": [],
25088        "enumValues": null,
25089        "possibleTypes": null
25090      },
25091      {
25092        "kind": "OBJECT",
25093        "name": "UserInvitationPublicDataQuery",
25094        "description": null,
25095        "fields": [
25096          {
25097            "name": "byToken",
25098            "description": "Get UserInvitationPublicData by token",
25099            "args": [
25100              {
25101                "name": "token",
25102                "description": null,
25103                "type": {
25104                  "kind": "NON_NULL",
25105                  "name": null,
25106                  "ofType": {
25107                    "kind": "SCALAR",
25108                    "name": "ID",
25109                    "ofType": null
25110                  }
25111                },
25112                "defaultValue": null,
25113                "isDeprecated": false,
25114                "deprecationReason": null
25115              }
25116            ],
25117            "type": {
25118              "kind": "NON_NULL",
25119              "name": null,
25120              "ofType": {
25121                "kind": "OBJECT",
25122                "name": "UserInvitationPublicData",
25123                "ofType": null
25124              }
25125            },
25126            "isDeprecated": false,
25127            "deprecationReason": null
25128          }
25129        ],
25130        "inputFields": null,
25131        "interfaces": [],
25132        "enumValues": null,
25133        "possibleTypes": null
25134      },
25135      {
25136        "kind": "OBJECT",
25137        "name": "UserPermission",
25138        "description": null,
25139        "fields": [
25140          {
25141            "name": "actor",
25142            "description": null,
25143            "args": [],
25144            "type": {
25145              "kind": "NON_NULL",
25146              "name": null,
25147              "ofType": {
25148                "kind": "INTERFACE",
25149                "name": "Actor",
25150                "ofType": null
25151              }
25152            },
25153            "isDeprecated": false,
25154            "deprecationReason": null
25155          },
25156          {
25157            "name": "permissions",
25158            "description": null,
25159            "args": [],
25160            "type": {
25161              "kind": "NON_NULL",
25162              "name": null,
25163              "ofType": {
25164                "kind": "LIST",
25165                "name": null,
25166                "ofType": {
25167                  "kind": "NON_NULL",
25168                  "name": null,
25169                  "ofType": {
25170                    "kind": "ENUM",
25171                    "name": "Permission",
25172                    "ofType": null
25173                  }
25174                }
25175              }
25176            },
25177            "isDeprecated": false,
25178            "deprecationReason": null
25179          },
25180          {
25181            "name": "role",
25182            "description": null,
25183            "args": [],
25184            "type": {
25185              "kind": "ENUM",
25186              "name": "Role",
25187              "ofType": null
25188            },
25189            "isDeprecated": false,
25190            "deprecationReason": null
25191          },
25192          {
25193            "name": "user",
25194            "description": null,
25195            "args": [],
25196            "type": {
25197              "kind": "OBJECT",
25198              "name": "User",
25199              "ofType": null
25200            },
25201            "isDeprecated": true,
25202            "deprecationReason": "User type is deprecated"
25203          }
25204        ],
25205        "inputFields": null,
25206        "interfaces": [],
25207        "enumValues": null,
25208        "possibleTypes": null
25209      },
25210      {
25211        "kind": "OBJECT",
25212        "name": "UserQuery",
25213        "description": null,
25214        "fields": [
25215          {
25216            "name": "byId",
25217            "description": "Query a User by ID",
25218            "args": [
25219              {
25220                "name": "userId",
25221                "description": null,
25222                "type": {
25223                  "kind": "NON_NULL",
25224                  "name": null,
25225                  "ofType": {
25226                    "kind": "SCALAR",
25227                    "name": "String",
25228                    "ofType": null
25229                  }
25230                },
25231                "defaultValue": null,
25232                "isDeprecated": false,
25233                "deprecationReason": null
25234              }
25235            ],
25236            "type": {
25237              "kind": "NON_NULL",
25238              "name": null,
25239              "ofType": {
25240                "kind": "OBJECT",
25241                "name": "User",
25242                "ofType": null
25243              }
25244            },
25245            "isDeprecated": false,
25246            "deprecationReason": null
25247          },
25248          {
25249            "name": "byUsername",
25250            "description": "Query a User by username",
25251            "args": [
25252              {
25253                "name": "username",
25254                "description": null,
25255                "type": {
25256                  "kind": "NON_NULL",
25257                  "name": null,
25258                  "ofType": {
25259                    "kind": "SCALAR",
25260                    "name": "String",
25261                    "ofType": null
25262                  }
25263                },
25264                "defaultValue": null,
25265                "isDeprecated": false,
25266                "deprecationReason": null
25267              }
25268            ],
25269            "type": {
25270              "kind": "NON_NULL",
25271              "name": null,
25272              "ofType": {
25273                "kind": "OBJECT",
25274                "name": "User",
25275                "ofType": null
25276              }
25277            },
25278            "isDeprecated": false,
25279            "deprecationReason": null
25280          }
25281        ],
25282        "inputFields": null,
25283        "interfaces": [],
25284        "enumValues": null,
25285        "possibleTypes": null
25286      },
25287      {
25288        "kind": "OBJECT",
25289        "name": "UserSecondFactorDevice",
25290        "description": "A second factor device belonging to a User",
25291        "fields": [
25292          {
25293            "name": "createdAt",
25294            "description": null,
25295            "args": [],
25296            "type": {
25297              "kind": "NON_NULL",
25298              "name": null,
25299              "ofType": {
25300                "kind": "SCALAR",
25301                "name": "DateTime",
25302                "ofType": null
25303              }
25304            },
25305            "isDeprecated": false,
25306            "deprecationReason": null
25307          },
25308          {
25309            "name": "id",
25310            "description": null,
25311            "args": [],
25312            "type": {
25313              "kind": "NON_NULL",
25314              "name": null,
25315              "ofType": {
25316                "kind": "SCALAR",
25317                "name": "ID",
25318                "ofType": null
25319              }
25320            },
25321            "isDeprecated": false,
25322            "deprecationReason": null
25323          },
25324          {
25325            "name": "isCertified",
25326            "description": null,
25327            "args": [],
25328            "type": {
25329              "kind": "NON_NULL",
25330              "name": null,
25331              "ofType": {
25332                "kind": "SCALAR",
25333                "name": "Boolean",
25334                "ofType": null
25335              }
25336            },
25337            "isDeprecated": false,
25338            "deprecationReason": null
25339          },
25340          {
25341            "name": "isPrimary",
25342            "description": null,
25343            "args": [],
25344            "type": {
25345              "kind": "NON_NULL",
25346              "name": null,
25347              "ofType": {
25348                "kind": "SCALAR",
25349                "name": "Boolean",
25350                "ofType": null
25351              }
25352            },
25353            "isDeprecated": false,
25354            "deprecationReason": null
25355          },
25356          {
25357            "name": "method",
25358            "description": null,
25359            "args": [],
25360            "type": {
25361              "kind": "NON_NULL",
25362              "name": null,
25363              "ofType": {
25364                "kind": "ENUM",
25365                "name": "SecondFactorMethod",
25366                "ofType": null
25367              }
25368            },
25369            "isDeprecated": false,
25370            "deprecationReason": null
25371          },
25372          {
25373            "name": "name",
25374            "description": null,
25375            "args": [],
25376            "type": {
25377              "kind": "NON_NULL",
25378              "name": null,
25379              "ofType": {
25380                "kind": "SCALAR",
25381                "name": "String",
25382                "ofType": null
25383              }
25384            },
25385            "isDeprecated": false,
25386            "deprecationReason": null
25387          },
25388          {
25389            "name": "smsPhoneNumber",
25390            "description": null,
25391            "args": [],
25392            "type": {
25393              "kind": "SCALAR",
25394              "name": "String",
25395              "ofType": null
25396            },
25397            "isDeprecated": false,
25398            "deprecationReason": null
25399          },
25400          {
25401            "name": "updatedAt",
25402            "description": null,
25403            "args": [],
25404            "type": {
25405              "kind": "NON_NULL",
25406              "name": null,
25407              "ofType": {
25408                "kind": "SCALAR",
25409                "name": "DateTime",
25410                "ofType": null
25411              }
25412            },
25413            "isDeprecated": false,
25414            "deprecationReason": null
25415          },
25416          {
25417            "name": "user",
25418            "description": null,
25419            "args": [],
25420            "type": {
25421              "kind": "NON_NULL",
25422              "name": null,
25423              "ofType": {
25424                "kind": "OBJECT",
25425                "name": "User",
25426                "ofType": null
25427              }
25428            },
25429            "isDeprecated": false,
25430            "deprecationReason": null
25431          }
25432        ],
25433        "inputFields": null,
25434        "interfaces": [],
25435        "enumValues": null,
25436        "possibleTypes": null
25437      },
25438      {
25439        "kind": "OBJECT",
25440        "name": "Webhook",
25441        "description": null,
25442        "fields": [
25443          {
25444            "name": "appId",
25445            "description": null,
25446            "args": [],
25447            "type": {
25448              "kind": "NON_NULL",
25449              "name": null,
25450              "ofType": {
25451                "kind": "SCALAR",
25452                "name": "ID",
25453                "ofType": null
25454              }
25455            },
25456            "isDeprecated": false,
25457            "deprecationReason": null
25458          },
25459          {
25460            "name": "createdAt",
25461            "description": null,
25462            "args": [],
25463            "type": {
25464              "kind": "NON_NULL",
25465              "name": null,
25466              "ofType": {
25467                "kind": "SCALAR",
25468                "name": "DateTime",
25469                "ofType": null
25470              }
25471            },
25472            "isDeprecated": false,
25473            "deprecationReason": null
25474          },
25475          {
25476            "name": "event",
25477            "description": null,
25478            "args": [],
25479            "type": {
25480              "kind": "NON_NULL",
25481              "name": null,
25482              "ofType": {
25483                "kind": "ENUM",
25484                "name": "WebhookType",
25485                "ofType": null
25486              }
25487            },
25488            "isDeprecated": false,
25489            "deprecationReason": null
25490          },
25491          {
25492            "name": "id",
25493            "description": null,
25494            "args": [],
25495            "type": {
25496              "kind": "NON_NULL",
25497              "name": null,
25498              "ofType": {
25499                "kind": "SCALAR",
25500                "name": "ID",
25501                "ofType": null
25502              }
25503            },
25504            "isDeprecated": false,
25505            "deprecationReason": null
25506          },
25507          {
25508            "name": "updatedAt",
25509            "description": null,
25510            "args": [],
25511            "type": {
25512              "kind": "NON_NULL",
25513              "name": null,
25514              "ofType": {
25515                "kind": "SCALAR",
25516                "name": "DateTime",
25517                "ofType": null
25518              }
25519            },
25520            "isDeprecated": false,
25521            "deprecationReason": null
25522          },
25523          {
25524            "name": "url",
25525            "description": null,
25526            "args": [],
25527            "type": {
25528              "kind": "NON_NULL",
25529              "name": null,
25530              "ofType": {
25531                "kind": "SCALAR",
25532                "name": "String",
25533                "ofType": null
25534              }
25535            },
25536            "isDeprecated": false,
25537            "deprecationReason": null
25538          }
25539        ],
25540        "inputFields": null,
25541        "interfaces": [],
25542        "enumValues": null,
25543        "possibleTypes": null
25544      },
25545      {
25546        "kind": "INPUT_OBJECT",
25547        "name": "WebhookFilter",
25548        "description": null,
25549        "fields": null,
25550        "inputFields": [
25551          {
25552            "name": "event",
25553            "description": null,
25554            "type": {
25555              "kind": "ENUM",
25556              "name": "WebhookType",
25557              "ofType": null
25558            },
25559            "defaultValue": null,
25560            "isDeprecated": false,
25561            "deprecationReason": null
25562          }
25563        ],
25564        "interfaces": null,
25565        "enumValues": null,
25566        "possibleTypes": null
25567      },
25568      {
25569        "kind": "INPUT_OBJECT",
25570        "name": "WebhookInput",
25571        "description": null,
25572        "fields": null,
25573        "inputFields": [
25574          {
25575            "name": "event",
25576            "description": null,
25577            "type": {
25578              "kind": "NON_NULL",
25579              "name": null,
25580              "ofType": {
25581                "kind": "ENUM",
25582                "name": "WebhookType",
25583                "ofType": null
25584              }
25585            },
25586            "defaultValue": null,
25587            "isDeprecated": false,
25588            "deprecationReason": null
25589          },
25590          {
25591            "name": "secret",
25592            "description": null,
25593            "type": {
25594              "kind": "NON_NULL",
25595              "name": null,
25596              "ofType": {
25597                "kind": "SCALAR",
25598                "name": "String",
25599                "ofType": null
25600              }
25601            },
25602            "defaultValue": null,
25603            "isDeprecated": false,
25604            "deprecationReason": null
25605          },
25606          {
25607            "name": "url",
25608            "description": null,
25609            "type": {
25610              "kind": "NON_NULL",
25611              "name": null,
25612              "ofType": {
25613                "kind": "SCALAR",
25614                "name": "String",
25615                "ofType": null
25616              }
25617            },
25618            "defaultValue": null,
25619            "isDeprecated": false,
25620            "deprecationReason": null
25621          }
25622        ],
25623        "interfaces": null,
25624        "enumValues": null,
25625        "possibleTypes": null
25626      },
25627      {
25628        "kind": "OBJECT",
25629        "name": "WebhookMutation",
25630        "description": null,
25631        "fields": [
25632          {
25633            "name": "createWebhook",
25634            "description": "Create a Webhook",
25635            "args": [
25636              {
25637                "name": "appId",
25638                "description": null,
25639                "type": {
25640                  "kind": "NON_NULL",
25641                  "name": null,
25642                  "ofType": {
25643                    "kind": "SCALAR",
25644                    "name": "String",
25645                    "ofType": null
25646                  }
25647                },
25648                "defaultValue": null,
25649                "isDeprecated": false,
25650                "deprecationReason": null
25651              },
25652              {
25653                "name": "webhookInput",
25654                "description": null,
25655                "type": {
25656                  "kind": "NON_NULL",
25657                  "name": null,
25658                  "ofType": {
25659                    "kind": "INPUT_OBJECT",
25660                    "name": "WebhookInput",
25661                    "ofType": null
25662                  }
25663                },
25664                "defaultValue": null,
25665                "isDeprecated": false,
25666                "deprecationReason": null
25667              }
25668            ],
25669            "type": {
25670              "kind": "NON_NULL",
25671              "name": null,
25672              "ofType": {
25673                "kind": "OBJECT",
25674                "name": "Webhook",
25675                "ofType": null
25676              }
25677            },
25678            "isDeprecated": false,
25679            "deprecationReason": null
25680          },
25681          {
25682            "name": "deleteWebhook",
25683            "description": "Delete a Webhook",
25684            "args": [
25685              {
25686                "name": "webhookId",
25687                "description": null,
25688                "type": {
25689                  "kind": "NON_NULL",
25690                  "name": null,
25691                  "ofType": {
25692                    "kind": "SCALAR",
25693                    "name": "ID",
25694                    "ofType": null
25695                  }
25696                },
25697                "defaultValue": null,
25698                "isDeprecated": false,
25699                "deprecationReason": null
25700              }
25701            ],
25702            "type": {
25703              "kind": "NON_NULL",
25704              "name": null,
25705              "ofType": {
25706                "kind": "OBJECT",
25707                "name": "DeleteWebhookResult",
25708                "ofType": null
25709              }
25710            },
25711            "isDeprecated": false,
25712            "deprecationReason": null
25713          },
25714          {
25715            "name": "updateWebhook",
25716            "description": "Update a Webhook",
25717            "args": [
25718              {
25719                "name": "webhookId",
25720                "description": null,
25721                "type": {
25722                  "kind": "NON_NULL",
25723                  "name": null,
25724                  "ofType": {
25725                    "kind": "SCALAR",
25726                    "name": "ID",
25727                    "ofType": null
25728                  }
25729                },
25730                "defaultValue": null,
25731                "isDeprecated": false,
25732                "deprecationReason": null
25733              },
25734              {
25735                "name": "webhookInput",
25736                "description": null,
25737                "type": {
25738                  "kind": "NON_NULL",
25739                  "name": null,
25740                  "ofType": {
25741                    "kind": "INPUT_OBJECT",
25742                    "name": "WebhookInput",
25743                    "ofType": null
25744                  }
25745                },
25746                "defaultValue": null,
25747                "isDeprecated": false,
25748                "deprecationReason": null
25749              }
25750            ],
25751            "type": {
25752              "kind": "NON_NULL",
25753              "name": null,
25754              "ofType": {
25755                "kind": "OBJECT",
25756                "name": "Webhook",
25757                "ofType": null
25758              }
25759            },
25760            "isDeprecated": false,
25761            "deprecationReason": null
25762          }
25763        ],
25764        "inputFields": null,
25765        "interfaces": [],
25766        "enumValues": null,
25767        "possibleTypes": null
25768      },
25769      {
25770        "kind": "OBJECT",
25771        "name": "WebhookQuery",
25772        "description": null,
25773        "fields": [
25774          {
25775            "name": "byId",
25776            "description": null,
25777            "args": [
25778              {
25779                "name": "id",
25780                "description": null,
25781                "type": {
25782                  "kind": "NON_NULL",
25783                  "name": null,
25784                  "ofType": {
25785                    "kind": "SCALAR",
25786                    "name": "ID",
25787                    "ofType": null
25788                  }
25789                },
25790                "defaultValue": null,
25791                "isDeprecated": false,
25792                "deprecationReason": null
25793              }
25794            ],
25795            "type": {
25796              "kind": "NON_NULL",
25797              "name": null,
25798              "ofType": {
25799                "kind": "OBJECT",
25800                "name": "Webhook",
25801                "ofType": null
25802              }
25803            },
25804            "isDeprecated": false,
25805            "deprecationReason": null
25806          }
25807        ],
25808        "inputFields": null,
25809        "interfaces": [],
25810        "enumValues": null,
25811        "possibleTypes": null
25812      },
25813      {
25814        "kind": "ENUM",
25815        "name": "WebhookType",
25816        "description": null,
25817        "fields": null,
25818        "inputFields": null,
25819        "interfaces": null,
25820        "enumValues": [
25821          {
25822            "name": "BUILD",
25823            "description": null,
25824            "isDeprecated": false,
25825            "deprecationReason": null
25826          },
25827          {
25828            "name": "SUBMIT",
25829            "description": null,
25830            "isDeprecated": false,
25831            "deprecationReason": null
25832          }
25833        ],
25834        "possibleTypes": null
25835      },
25836      {
25837        "kind": "OBJECT",
25838        "name": "__Directive",
25839        "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.",
25840        "fields": [
25841          {
25842            "name": "name",
25843            "description": null,
25844            "args": [],
25845            "type": {
25846              "kind": "NON_NULL",
25847              "name": null,
25848              "ofType": {
25849                "kind": "SCALAR",
25850                "name": "String",
25851                "ofType": null
25852              }
25853            },
25854            "isDeprecated": false,
25855            "deprecationReason": null
25856          },
25857          {
25858            "name": "description",
25859            "description": null,
25860            "args": [],
25861            "type": {
25862              "kind": "SCALAR",
25863              "name": "String",
25864              "ofType": null
25865            },
25866            "isDeprecated": false,
25867            "deprecationReason": null
25868          },
25869          {
25870            "name": "isRepeatable",
25871            "description": null,
25872            "args": [],
25873            "type": {
25874              "kind": "NON_NULL",
25875              "name": null,
25876              "ofType": {
25877                "kind": "SCALAR",
25878                "name": "Boolean",
25879                "ofType": null
25880              }
25881            },
25882            "isDeprecated": false,
25883            "deprecationReason": null
25884          },
25885          {
25886            "name": "locations",
25887            "description": null,
25888            "args": [],
25889            "type": {
25890              "kind": "NON_NULL",
25891              "name": null,
25892              "ofType": {
25893                "kind": "LIST",
25894                "name": null,
25895                "ofType": {
25896                  "kind": "NON_NULL",
25897                  "name": null,
25898                  "ofType": {
25899                    "kind": "ENUM",
25900                    "name": "__DirectiveLocation",
25901                    "ofType": null
25902                  }
25903                }
25904              }
25905            },
25906            "isDeprecated": false,
25907            "deprecationReason": null
25908          },
25909          {
25910            "name": "args",
25911            "description": null,
25912            "args": [
25913              {
25914                "name": "includeDeprecated",
25915                "description": null,
25916                "type": {
25917                  "kind": "SCALAR",
25918                  "name": "Boolean",
25919                  "ofType": null
25920                },
25921                "defaultValue": "false",
25922                "isDeprecated": false,
25923                "deprecationReason": null
25924              }
25925            ],
25926            "type": {
25927              "kind": "NON_NULL",
25928              "name": null,
25929              "ofType": {
25930                "kind": "LIST",
25931                "name": null,
25932                "ofType": {
25933                  "kind": "NON_NULL",
25934                  "name": null,
25935                  "ofType": {
25936                    "kind": "OBJECT",
25937                    "name": "__InputValue",
25938                    "ofType": null
25939                  }
25940                }
25941              }
25942            },
25943            "isDeprecated": false,
25944            "deprecationReason": null
25945          }
25946        ],
25947        "inputFields": null,
25948        "interfaces": [],
25949        "enumValues": null,
25950        "possibleTypes": null
25951      },
25952      {
25953        "kind": "ENUM",
25954        "name": "__DirectiveLocation",
25955        "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.",
25956        "fields": null,
25957        "inputFields": null,
25958        "interfaces": null,
25959        "enumValues": [
25960          {
25961            "name": "QUERY",
25962            "description": "Location adjacent to a query operation.",
25963            "isDeprecated": false,
25964            "deprecationReason": null
25965          },
25966          {
25967            "name": "MUTATION",
25968            "description": "Location adjacent to a mutation operation.",
25969            "isDeprecated": false,
25970            "deprecationReason": null
25971          },
25972          {
25973            "name": "SUBSCRIPTION",
25974            "description": "Location adjacent to a subscription operation.",
25975            "isDeprecated": false,
25976            "deprecationReason": null
25977          },
25978          {
25979            "name": "FIELD",
25980            "description": "Location adjacent to a field.",
25981            "isDeprecated": false,
25982            "deprecationReason": null
25983          },
25984          {
25985            "name": "FRAGMENT_DEFINITION",
25986            "description": "Location adjacent to a fragment definition.",
25987            "isDeprecated": false,
25988            "deprecationReason": null
25989          },
25990          {
25991            "name": "FRAGMENT_SPREAD",
25992            "description": "Location adjacent to a fragment spread.",
25993            "isDeprecated": false,
25994            "deprecationReason": null
25995          },
25996          {
25997            "name": "INLINE_FRAGMENT",
25998            "description": "Location adjacent to an inline fragment.",
25999            "isDeprecated": false,
26000            "deprecationReason": null
26001          },
26002          {
26003            "name": "VARIABLE_DEFINITION",
26004            "description": "Location adjacent to a variable definition.",
26005            "isDeprecated": false,
26006            "deprecationReason": null
26007          },
26008          {
26009            "name": "SCHEMA",
26010            "description": "Location adjacent to a schema definition.",
26011            "isDeprecated": false,
26012            "deprecationReason": null
26013          },
26014          {
26015            "name": "SCALAR",
26016            "description": "Location adjacent to a scalar definition.",
26017            "isDeprecated": false,
26018            "deprecationReason": null
26019          },
26020          {
26021            "name": "OBJECT",
26022            "description": "Location adjacent to an object type definition.",
26023            "isDeprecated": false,
26024            "deprecationReason": null
26025          },
26026          {
26027            "name": "FIELD_DEFINITION",
26028            "description": "Location adjacent to a field definition.",
26029            "isDeprecated": false,
26030            "deprecationReason": null
26031          },
26032          {
26033            "name": "ARGUMENT_DEFINITION",
26034            "description": "Location adjacent to an argument definition.",
26035            "isDeprecated": false,
26036            "deprecationReason": null
26037          },
26038          {
26039            "name": "INTERFACE",
26040            "description": "Location adjacent to an interface definition.",
26041            "isDeprecated": false,
26042            "deprecationReason": null
26043          },
26044          {
26045            "name": "UNION",
26046            "description": "Location adjacent to a union definition.",
26047            "isDeprecated": false,
26048            "deprecationReason": null
26049          },
26050          {
26051            "name": "ENUM",
26052            "description": "Location adjacent to an enum definition.",
26053            "isDeprecated": false,
26054            "deprecationReason": null
26055          },
26056          {
26057            "name": "ENUM_VALUE",
26058            "description": "Location adjacent to an enum value definition.",
26059            "isDeprecated": false,
26060            "deprecationReason": null
26061          },
26062          {
26063            "name": "INPUT_OBJECT",
26064            "description": "Location adjacent to an input object type definition.",
26065            "isDeprecated": false,
26066            "deprecationReason": null
26067          },
26068          {
26069            "name": "INPUT_FIELD_DEFINITION",
26070            "description": "Location adjacent to an input object field definition.",
26071            "isDeprecated": false,
26072            "deprecationReason": null
26073          }
26074        ],
26075        "possibleTypes": null
26076      },
26077      {
26078        "kind": "OBJECT",
26079        "name": "__EnumValue",
26080        "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.",
26081        "fields": [
26082          {
26083            "name": "name",
26084            "description": null,
26085            "args": [],
26086            "type": {
26087              "kind": "NON_NULL",
26088              "name": null,
26089              "ofType": {
26090                "kind": "SCALAR",
26091                "name": "String",
26092                "ofType": null
26093              }
26094            },
26095            "isDeprecated": false,
26096            "deprecationReason": null
26097          },
26098          {
26099            "name": "description",
26100            "description": null,
26101            "args": [],
26102            "type": {
26103              "kind": "SCALAR",
26104              "name": "String",
26105              "ofType": null
26106            },
26107            "isDeprecated": false,
26108            "deprecationReason": null
26109          },
26110          {
26111            "name": "isDeprecated",
26112            "description": null,
26113            "args": [],
26114            "type": {
26115              "kind": "NON_NULL",
26116              "name": null,
26117              "ofType": {
26118                "kind": "SCALAR",
26119                "name": "Boolean",
26120                "ofType": null
26121              }
26122            },
26123            "isDeprecated": false,
26124            "deprecationReason": null
26125          },
26126          {
26127            "name": "deprecationReason",
26128            "description": null,
26129            "args": [],
26130            "type": {
26131              "kind": "SCALAR",
26132              "name": "String",
26133              "ofType": null
26134            },
26135            "isDeprecated": false,
26136            "deprecationReason": null
26137          }
26138        ],
26139        "inputFields": null,
26140        "interfaces": [],
26141        "enumValues": null,
26142        "possibleTypes": null
26143      },
26144      {
26145        "kind": "OBJECT",
26146        "name": "__Field",
26147        "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.",
26148        "fields": [
26149          {
26150            "name": "name",
26151            "description": null,
26152            "args": [],
26153            "type": {
26154              "kind": "NON_NULL",
26155              "name": null,
26156              "ofType": {
26157                "kind": "SCALAR",
26158                "name": "String",
26159                "ofType": null
26160              }
26161            },
26162            "isDeprecated": false,
26163            "deprecationReason": null
26164          },
26165          {
26166            "name": "description",
26167            "description": null,
26168            "args": [],
26169            "type": {
26170              "kind": "SCALAR",
26171              "name": "String",
26172              "ofType": null
26173            },
26174            "isDeprecated": false,
26175            "deprecationReason": null
26176          },
26177          {
26178            "name": "args",
26179            "description": null,
26180            "args": [
26181              {
26182                "name": "includeDeprecated",
26183                "description": null,
26184                "type": {
26185                  "kind": "SCALAR",
26186                  "name": "Boolean",
26187                  "ofType": null
26188                },
26189                "defaultValue": "false",
26190                "isDeprecated": false,
26191                "deprecationReason": null
26192              }
26193            ],
26194            "type": {
26195              "kind": "NON_NULL",
26196              "name": null,
26197              "ofType": {
26198                "kind": "LIST",
26199                "name": null,
26200                "ofType": {
26201                  "kind": "NON_NULL",
26202                  "name": null,
26203                  "ofType": {
26204                    "kind": "OBJECT",
26205                    "name": "__InputValue",
26206                    "ofType": null
26207                  }
26208                }
26209              }
26210            },
26211            "isDeprecated": false,
26212            "deprecationReason": null
26213          },
26214          {
26215            "name": "type",
26216            "description": null,
26217            "args": [],
26218            "type": {
26219              "kind": "NON_NULL",
26220              "name": null,
26221              "ofType": {
26222                "kind": "OBJECT",
26223                "name": "__Type",
26224                "ofType": null
26225              }
26226            },
26227            "isDeprecated": false,
26228            "deprecationReason": null
26229          },
26230          {
26231            "name": "isDeprecated",
26232            "description": null,
26233            "args": [],
26234            "type": {
26235              "kind": "NON_NULL",
26236              "name": null,
26237              "ofType": {
26238                "kind": "SCALAR",
26239                "name": "Boolean",
26240                "ofType": null
26241              }
26242            },
26243            "isDeprecated": false,
26244            "deprecationReason": null
26245          },
26246          {
26247            "name": "deprecationReason",
26248            "description": null,
26249            "args": [],
26250            "type": {
26251              "kind": "SCALAR",
26252              "name": "String",
26253              "ofType": null
26254            },
26255            "isDeprecated": false,
26256            "deprecationReason": null
26257          }
26258        ],
26259        "inputFields": null,
26260        "interfaces": [],
26261        "enumValues": null,
26262        "possibleTypes": null
26263      },
26264      {
26265        "kind": "OBJECT",
26266        "name": "__InputValue",
26267        "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.",
26268        "fields": [
26269          {
26270            "name": "name",
26271            "description": null,
26272            "args": [],
26273            "type": {
26274              "kind": "NON_NULL",
26275              "name": null,
26276              "ofType": {
26277                "kind": "SCALAR",
26278                "name": "String",
26279                "ofType": null
26280              }
26281            },
26282            "isDeprecated": false,
26283            "deprecationReason": null
26284          },
26285          {
26286            "name": "description",
26287            "description": null,
26288            "args": [],
26289            "type": {
26290              "kind": "SCALAR",
26291              "name": "String",
26292              "ofType": null
26293            },
26294            "isDeprecated": false,
26295            "deprecationReason": null
26296          },
26297          {
26298            "name": "type",
26299            "description": null,
26300            "args": [],
26301            "type": {
26302              "kind": "NON_NULL",
26303              "name": null,
26304              "ofType": {
26305                "kind": "OBJECT",
26306                "name": "__Type",
26307                "ofType": null
26308              }
26309            },
26310            "isDeprecated": false,
26311            "deprecationReason": null
26312          },
26313          {
26314            "name": "defaultValue",
26315            "description": "A GraphQL-formatted string representing the default value for this input value.",
26316            "args": [],
26317            "type": {
26318              "kind": "SCALAR",
26319              "name": "String",
26320              "ofType": null
26321            },
26322            "isDeprecated": false,
26323            "deprecationReason": null
26324          },
26325          {
26326            "name": "isDeprecated",
26327            "description": null,
26328            "args": [],
26329            "type": {
26330              "kind": "NON_NULL",
26331              "name": null,
26332              "ofType": {
26333                "kind": "SCALAR",
26334                "name": "Boolean",
26335                "ofType": null
26336              }
26337            },
26338            "isDeprecated": false,
26339            "deprecationReason": null
26340          },
26341          {
26342            "name": "deprecationReason",
26343            "description": null,
26344            "args": [],
26345            "type": {
26346              "kind": "SCALAR",
26347              "name": "String",
26348              "ofType": null
26349            },
26350            "isDeprecated": false,
26351            "deprecationReason": null
26352          }
26353        ],
26354        "inputFields": null,
26355        "interfaces": [],
26356        "enumValues": null,
26357        "possibleTypes": null
26358      },
26359      {
26360        "kind": "OBJECT",
26361        "name": "__Schema",
26362        "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.",
26363        "fields": [
26364          {
26365            "name": "description",
26366            "description": null,
26367            "args": [],
26368            "type": {
26369              "kind": "SCALAR",
26370              "name": "String",
26371              "ofType": null
26372            },
26373            "isDeprecated": false,
26374            "deprecationReason": null
26375          },
26376          {
26377            "name": "types",
26378            "description": "A list of all types supported by this server.",
26379            "args": [],
26380            "type": {
26381              "kind": "NON_NULL",
26382              "name": null,
26383              "ofType": {
26384                "kind": "LIST",
26385                "name": null,
26386                "ofType": {
26387                  "kind": "NON_NULL",
26388                  "name": null,
26389                  "ofType": {
26390                    "kind": "OBJECT",
26391                    "name": "__Type",
26392                    "ofType": null
26393                  }
26394                }
26395              }
26396            },
26397            "isDeprecated": false,
26398            "deprecationReason": null
26399          },
26400          {
26401            "name": "queryType",
26402            "description": "The type that query operations will be rooted at.",
26403            "args": [],
26404            "type": {
26405              "kind": "NON_NULL",
26406              "name": null,
26407              "ofType": {
26408                "kind": "OBJECT",
26409                "name": "__Type",
26410                "ofType": null
26411              }
26412            },
26413            "isDeprecated": false,
26414            "deprecationReason": null
26415          },
26416          {
26417            "name": "mutationType",
26418            "description": "If this server supports mutation, the type that mutation operations will be rooted at.",
26419            "args": [],
26420            "type": {
26421              "kind": "OBJECT",
26422              "name": "__Type",
26423              "ofType": null
26424            },
26425            "isDeprecated": false,
26426            "deprecationReason": null
26427          },
26428          {
26429            "name": "subscriptionType",
26430            "description": "If this server support subscription, the type that subscription operations will be rooted at.",
26431            "args": [],
26432            "type": {
26433              "kind": "OBJECT",
26434              "name": "__Type",
26435              "ofType": null
26436            },
26437            "isDeprecated": false,
26438            "deprecationReason": null
26439          },
26440          {
26441            "name": "directives",
26442            "description": "A list of all directives supported by this server.",
26443            "args": [],
26444            "type": {
26445              "kind": "NON_NULL",
26446              "name": null,
26447              "ofType": {
26448                "kind": "LIST",
26449                "name": null,
26450                "ofType": {
26451                  "kind": "NON_NULL",
26452                  "name": null,
26453                  "ofType": {
26454                    "kind": "OBJECT",
26455                    "name": "__Directive",
26456                    "ofType": null
26457                  }
26458                }
26459              }
26460            },
26461            "isDeprecated": false,
26462            "deprecationReason": null
26463          }
26464        ],
26465        "inputFields": null,
26466        "interfaces": [],
26467        "enumValues": null,
26468        "possibleTypes": null
26469      },
26470      {
26471        "kind": "OBJECT",
26472        "name": "__Type",
26473        "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByUrl`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.",
26474        "fields": [
26475          {
26476            "name": "kind",
26477            "description": null,
26478            "args": [],
26479            "type": {
26480              "kind": "NON_NULL",
26481              "name": null,
26482              "ofType": {
26483                "kind": "ENUM",
26484                "name": "__TypeKind",
26485                "ofType": null
26486              }
26487            },
26488            "isDeprecated": false,
26489            "deprecationReason": null
26490          },
26491          {
26492            "name": "name",
26493            "description": null,
26494            "args": [],
26495            "type": {
26496              "kind": "SCALAR",
26497              "name": "String",
26498              "ofType": null
26499            },
26500            "isDeprecated": false,
26501            "deprecationReason": null
26502          },
26503          {
26504            "name": "description",
26505            "description": null,
26506            "args": [],
26507            "type": {
26508              "kind": "SCALAR",
26509              "name": "String",
26510              "ofType": null
26511            },
26512            "isDeprecated": false,
26513            "deprecationReason": null
26514          },
26515          {
26516            "name": "specifiedByUrl",
26517            "description": null,
26518            "args": [],
26519            "type": {
26520              "kind": "SCALAR",
26521              "name": "String",
26522              "ofType": null
26523            },
26524            "isDeprecated": false,
26525            "deprecationReason": null
26526          },
26527          {
26528            "name": "fields",
26529            "description": null,
26530            "args": [
26531              {
26532                "name": "includeDeprecated",
26533                "description": null,
26534                "type": {
26535                  "kind": "SCALAR",
26536                  "name": "Boolean",
26537                  "ofType": null
26538                },
26539                "defaultValue": "false",
26540                "isDeprecated": false,
26541                "deprecationReason": null
26542              }
26543            ],
26544            "type": {
26545              "kind": "LIST",
26546              "name": null,
26547              "ofType": {
26548                "kind": "NON_NULL",
26549                "name": null,
26550                "ofType": {
26551                  "kind": "OBJECT",
26552                  "name": "__Field",
26553                  "ofType": null
26554                }
26555              }
26556            },
26557            "isDeprecated": false,
26558            "deprecationReason": null
26559          },
26560          {
26561            "name": "interfaces",
26562            "description": null,
26563            "args": [],
26564            "type": {
26565              "kind": "LIST",
26566              "name": null,
26567              "ofType": {
26568                "kind": "NON_NULL",
26569                "name": null,
26570                "ofType": {
26571                  "kind": "OBJECT",
26572                  "name": "__Type",
26573                  "ofType": null
26574                }
26575              }
26576            },
26577            "isDeprecated": false,
26578            "deprecationReason": null
26579          },
26580          {
26581            "name": "possibleTypes",
26582            "description": null,
26583            "args": [],
26584            "type": {
26585              "kind": "LIST",
26586              "name": null,
26587              "ofType": {
26588                "kind": "NON_NULL",
26589                "name": null,
26590                "ofType": {
26591                  "kind": "OBJECT",
26592                  "name": "__Type",
26593                  "ofType": null
26594                }
26595              }
26596            },
26597            "isDeprecated": false,
26598            "deprecationReason": null
26599          },
26600          {
26601            "name": "enumValues",
26602            "description": null,
26603            "args": [
26604              {
26605                "name": "includeDeprecated",
26606                "description": null,
26607                "type": {
26608                  "kind": "SCALAR",
26609                  "name": "Boolean",
26610                  "ofType": null
26611                },
26612                "defaultValue": "false",
26613                "isDeprecated": false,
26614                "deprecationReason": null
26615              }
26616            ],
26617            "type": {
26618              "kind": "LIST",
26619              "name": null,
26620              "ofType": {
26621                "kind": "NON_NULL",
26622                "name": null,
26623                "ofType": {
26624                  "kind": "OBJECT",
26625                  "name": "__EnumValue",
26626                  "ofType": null
26627                }
26628              }
26629            },
26630            "isDeprecated": false,
26631            "deprecationReason": null
26632          },
26633          {
26634            "name": "inputFields",
26635            "description": null,
26636            "args": [
26637              {
26638                "name": "includeDeprecated",
26639                "description": null,
26640                "type": {
26641                  "kind": "SCALAR",
26642                  "name": "Boolean",
26643                  "ofType": null
26644                },
26645                "defaultValue": "false",
26646                "isDeprecated": false,
26647                "deprecationReason": null
26648              }
26649            ],
26650            "type": {
26651              "kind": "LIST",
26652              "name": null,
26653              "ofType": {
26654                "kind": "NON_NULL",
26655                "name": null,
26656                "ofType": {
26657                  "kind": "OBJECT",
26658                  "name": "__InputValue",
26659                  "ofType": null
26660                }
26661              }
26662            },
26663            "isDeprecated": false,
26664            "deprecationReason": null
26665          },
26666          {
26667            "name": "ofType",
26668            "description": null,
26669            "args": [],
26670            "type": {
26671              "kind": "OBJECT",
26672              "name": "__Type",
26673              "ofType": null
26674            },
26675            "isDeprecated": false,
26676            "deprecationReason": null
26677          }
26678        ],
26679        "inputFields": null,
26680        "interfaces": [],
26681        "enumValues": null,
26682        "possibleTypes": null
26683      },
26684      {
26685        "kind": "ENUM",
26686        "name": "__TypeKind",
26687        "description": "An enum describing what kind of type a given `__Type` is.",
26688        "fields": null,
26689        "inputFields": null,
26690        "interfaces": null,
26691        "enumValues": [
26692          {
26693            "name": "SCALAR",
26694            "description": "Indicates this type is a scalar.",
26695            "isDeprecated": false,
26696            "deprecationReason": null
26697          },
26698          {
26699            "name": "OBJECT",
26700            "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.",
26701            "isDeprecated": false,
26702            "deprecationReason": null
26703          },
26704          {
26705            "name": "INTERFACE",
26706            "description": "Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.",
26707            "isDeprecated": false,
26708            "deprecationReason": null
26709          },
26710          {
26711            "name": "UNION",
26712            "description": "Indicates this type is a union. `possibleTypes` is a valid field.",
26713            "isDeprecated": false,
26714            "deprecationReason": null
26715          },
26716          {
26717            "name": "ENUM",
26718            "description": "Indicates this type is an enum. `enumValues` is a valid field.",
26719            "isDeprecated": false,
26720            "deprecationReason": null
26721          },
26722          {
26723            "name": "INPUT_OBJECT",
26724            "description": "Indicates this type is an input object. `inputFields` is a valid field.",
26725            "isDeprecated": false,
26726            "deprecationReason": null
26727          },
26728          {
26729            "name": "LIST",
26730            "description": "Indicates this type is a list. `ofType` is a valid field.",
26731            "isDeprecated": false,
26732            "deprecationReason": null
26733          },
26734          {
26735            "name": "NON_NULL",
26736            "description": "Indicates this type is a non-null. `ofType` is a valid field.",
26737            "isDeprecated": false,
26738            "deprecationReason": null
26739          }
26740        ],
26741        "possibleTypes": null
26742      },
26743      {
26744        "kind": "OBJECT",
26745        "name": "deleteAndroidAppBuildCredentialsResult",
26746        "description": null,
26747        "fields": [
26748          {
26749            "name": "id",
26750            "description": null,
26751            "args": [],
26752            "type": {
26753              "kind": "NON_NULL",
26754              "name": null,
26755              "ofType": {
26756                "kind": "SCALAR",
26757                "name": "ID",
26758                "ofType": null
26759              }
26760            },
26761            "isDeprecated": false,
26762            "deprecationReason": null
26763          }
26764        ],
26765        "inputFields": null,
26766        "interfaces": [],
26767        "enumValues": null,
26768        "possibleTypes": null
26769      },
26770      {
26771        "kind": "OBJECT",
26772        "name": "deleteAndroidFcmResult",
26773        "description": null,
26774        "fields": [
26775          {
26776            "name": "id",
26777            "description": null,
26778            "args": [],
26779            "type": {
26780              "kind": "NON_NULL",
26781              "name": null,
26782              "ofType": {
26783                "kind": "SCALAR",
26784                "name": "ID",
26785                "ofType": null
26786              }
26787            },
26788            "isDeprecated": false,
26789            "deprecationReason": null
26790          }
26791        ],
26792        "inputFields": null,
26793        "interfaces": [],
26794        "enumValues": null,
26795        "possibleTypes": null
26796      },
26797      {
26798        "kind": "OBJECT",
26799        "name": "deleteAppStoreConnectApiKeyResult",
26800        "description": null,
26801        "fields": [
26802          {
26803            "name": "id",
26804            "description": null,
26805            "args": [],
26806            "type": {
26807              "kind": "NON_NULL",
26808              "name": null,
26809              "ofType": {
26810                "kind": "SCALAR",
26811                "name": "ID",
26812                "ofType": null
26813              }
26814            },
26815            "isDeprecated": false,
26816            "deprecationReason": null
26817          }
26818        ],
26819        "inputFields": null,
26820        "interfaces": [],
26821        "enumValues": null,
26822        "possibleTypes": null
26823      },
26824      {
26825        "kind": "OBJECT",
26826        "name": "deleteApplePushKeyResult",
26827        "description": null,
26828        "fields": [
26829          {
26830            "name": "id",
26831            "description": null,
26832            "args": [],
26833            "type": {
26834              "kind": "NON_NULL",
26835              "name": null,
26836              "ofType": {
26837                "kind": "SCALAR",
26838                "name": "ID",
26839                "ofType": null
26840              }
26841            },
26842            "isDeprecated": false,
26843            "deprecationReason": null
26844          }
26845        ],
26846        "inputFields": null,
26847        "interfaces": [],
26848        "enumValues": null,
26849        "possibleTypes": null
26850      }
26851    ],
26852    "directives": [
26853      {
26854        "name": "deprecated",
26855        "description": "Marks an element of a GraphQL schema as no longer supported.",
26856        "isRepeatable": false,
26857        "locations": [
26858          "ARGUMENT_DEFINITION",
26859          "ENUM_VALUE",
26860          "FIELD_DEFINITION",
26861          "INPUT_FIELD_DEFINITION"
26862        ],
26863        "args": [
26864          {
26865            "name": "reason",
26866            "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).",
26867            "type": {
26868              "kind": "SCALAR",
26869              "name": "String",
26870              "ofType": null
26871            },
26872            "defaultValue": "\"No longer supported\"",
26873            "isDeprecated": false,
26874            "deprecationReason": null
26875          }
26876        ]
26877      },
26878      {
26879        "name": "include",
26880        "description": "Directs the executor to include this field or fragment only when the `if` argument is true.",
26881        "isRepeatable": false,
26882        "locations": [
26883          "FIELD",
26884          "FRAGMENT_SPREAD",
26885          "INLINE_FRAGMENT"
26886        ],
26887        "args": [
26888          {
26889            "name": "if",
26890            "description": "Included when true.",
26891            "type": {
26892              "kind": "NON_NULL",
26893              "name": null,
26894              "ofType": {
26895                "kind": "SCALAR",
26896                "name": "Boolean",
26897                "ofType": null
26898              }
26899            },
26900            "defaultValue": null,
26901            "isDeprecated": false,
26902            "deprecationReason": null
26903          }
26904        ]
26905      },
26906      {
26907        "name": "skip",
26908        "description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
26909        "isRepeatable": false,
26910        "locations": [
26911          "FIELD",
26912          "FRAGMENT_SPREAD",
26913          "INLINE_FRAGMENT"
26914        ],
26915        "args": [
26916          {
26917            "name": "if",
26918            "description": "Skipped when true.",
26919            "type": {
26920              "kind": "NON_NULL",
26921              "name": null,
26922              "ofType": {
26923                "kind": "SCALAR",
26924                "name": "Boolean",
26925                "ofType": null
26926              }
26927            },
26928            "defaultValue": null,
26929            "isDeprecated": false,
26930            "deprecationReason": null
26931          }
26932        ]
26933      },
26934      {
26935        "name": "specifiedBy",
26936        "description": "Exposes a URL that specifies the behaviour of this scalar.",
26937        "isRepeatable": false,
26938        "locations": [
26939          "SCALAR"
26940        ],
26941        "args": [
26942          {
26943            "name": "url",
26944            "description": "The URL that specifies the behaviour of this scalar.",
26945            "type": {
26946              "kind": "NON_NULL",
26947              "name": null,
26948              "ofType": {
26949                "kind": "SCALAR",
26950                "name": "String",
26951                "ofType": null
26952              }
26953            },
26954            "defaultValue": null,
26955            "isDeprecated": false,
26956            "deprecationReason": null
26957          }
26958        ]
26959      }
26960    ]
26961  }
26962}