xref: /expo/home/graphql.schema.json (revision 4dde4257)
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                "name": "limit",
480                "description": null,
481                "type": {
482                  "kind": "SCALAR",
483                  "name": "Int",
484                  "ofType": null
485                },
486                "defaultValue": null,
487                "isDeprecated": false,
488                "deprecationReason": null
489              },
490              {
491                "name": "offset",
492                "description": null,
493                "type": {
494                  "kind": "SCALAR",
495                  "name": "Int",
496                  "ofType": null
497                },
498                "defaultValue": null,
499                "isDeprecated": false,
500                "deprecationReason": null
501              }
502            ],
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": "AppleDevice",
515                    "ofType": null
516                  }
517                }
518              }
519            },
520            "isDeprecated": false,
521            "deprecationReason": null
522          },
523          {
524            "name": "appleDistributionCertificates",
525            "description": null,
526            "args": [],
527            "type": {
528              "kind": "NON_NULL",
529              "name": null,
530              "ofType": {
531                "kind": "LIST",
532                "name": null,
533                "ofType": {
534                  "kind": "NON_NULL",
535                  "name": null,
536                  "ofType": {
537                    "kind": "OBJECT",
538                    "name": "AppleDistributionCertificate",
539                    "ofType": null
540                  }
541                }
542              }
543            },
544            "isDeprecated": false,
545            "deprecationReason": null
546          },
547          {
548            "name": "appleProvisioningProfiles",
549            "description": null,
550            "args": [
551              {
552                "name": "appleAppIdentifierId",
553                "description": null,
554                "type": {
555                  "kind": "SCALAR",
556                  "name": "ID",
557                  "ofType": null
558                },
559                "defaultValue": null,
560                "isDeprecated": false,
561                "deprecationReason": null
562              }
563            ],
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": "AppleProvisioningProfile",
576                    "ofType": null
577                  }
578                }
579              }
580            },
581            "isDeprecated": false,
582            "deprecationReason": null
583          },
584          {
585            "name": "applePushKeys",
586            "description": null,
587            "args": [],
588            "type": {
589              "kind": "NON_NULL",
590              "name": null,
591              "ofType": {
592                "kind": "LIST",
593                "name": null,
594                "ofType": {
595                  "kind": "NON_NULL",
596                  "name": null,
597                  "ofType": {
598                    "kind": "OBJECT",
599                    "name": "ApplePushKey",
600                    "ofType": null
601                  }
602                }
603              }
604            },
605            "isDeprecated": false,
606            "deprecationReason": null
607          },
608          {
609            "name": "appleTeams",
610            "description": "iOS credentials for account",
611            "args": [
612              {
613                "name": "appleTeamIdentifier",
614                "description": null,
615                "type": {
616                  "kind": "SCALAR",
617                  "name": "String",
618                  "ofType": null
619                },
620                "defaultValue": null,
621                "isDeprecated": false,
622                "deprecationReason": null
623              },
624              {
625                "name": "limit",
626                "description": null,
627                "type": {
628                  "kind": "SCALAR",
629                  "name": "Int",
630                  "ofType": null
631                },
632                "defaultValue": null,
633                "isDeprecated": false,
634                "deprecationReason": null
635              },
636              {
637                "name": "offset",
638                "description": null,
639                "type": {
640                  "kind": "SCALAR",
641                  "name": "Int",
642                  "ofType": null
643                },
644                "defaultValue": null,
645                "isDeprecated": false,
646                "deprecationReason": null
647              }
648            ],
649            "type": {
650              "kind": "NON_NULL",
651              "name": null,
652              "ofType": {
653                "kind": "LIST",
654                "name": null,
655                "ofType": {
656                  "kind": "NON_NULL",
657                  "name": null,
658                  "ofType": {
659                    "kind": "OBJECT",
660                    "name": "AppleTeam",
661                    "ofType": null
662                  }
663                }
664              }
665            },
666            "isDeprecated": false,
667            "deprecationReason": null
668          },
669          {
670            "name": "apps",
671            "description": "Apps associated with this account",
672            "args": [
673              {
674                "name": "includeUnpublished",
675                "description": null,
676                "type": {
677                  "kind": "SCALAR",
678                  "name": "Boolean",
679                  "ofType": null
680                },
681                "defaultValue": null,
682                "isDeprecated": false,
683                "deprecationReason": null
684              },
685              {
686                "name": "limit",
687                "description": null,
688                "type": {
689                  "kind": "NON_NULL",
690                  "name": null,
691                  "ofType": {
692                    "kind": "SCALAR",
693                    "name": "Int",
694                    "ofType": null
695                  }
696                },
697                "defaultValue": null,
698                "isDeprecated": false,
699                "deprecationReason": null
700              },
701              {
702                "name": "offset",
703                "description": null,
704                "type": {
705                  "kind": "NON_NULL",
706                  "name": null,
707                  "ofType": {
708                    "kind": "SCALAR",
709                    "name": "Int",
710                    "ofType": null
711                  }
712                },
713                "defaultValue": null,
714                "isDeprecated": false,
715                "deprecationReason": null
716              }
717            ],
718            "type": {
719              "kind": "NON_NULL",
720              "name": null,
721              "ofType": {
722                "kind": "LIST",
723                "name": null,
724                "ofType": {
725                  "kind": "NON_NULL",
726                  "name": null,
727                  "ofType": {
728                    "kind": "OBJECT",
729                    "name": "App",
730                    "ofType": null
731                  }
732                }
733              }
734            },
735            "isDeprecated": false,
736            "deprecationReason": null
737          },
738          {
739            "name": "appsPaginated",
740            "description": "Paginated list of apps associated with this account. By default sorted by name. Use filter to adjust the sorting order.",
741            "args": [
742              {
743                "name": "after",
744                "description": null,
745                "type": {
746                  "kind": "SCALAR",
747                  "name": "String",
748                  "ofType": null
749                },
750                "defaultValue": null,
751                "isDeprecated": false,
752                "deprecationReason": null
753              },
754              {
755                "name": "before",
756                "description": null,
757                "type": {
758                  "kind": "SCALAR",
759                  "name": "String",
760                  "ofType": null
761                },
762                "defaultValue": null,
763                "isDeprecated": false,
764                "deprecationReason": null
765              },
766              {
767                "name": "filter",
768                "description": null,
769                "type": {
770                  "kind": "INPUT_OBJECT",
771                  "name": "AccountAppsFilterInput",
772                  "ofType": null
773                },
774                "defaultValue": null,
775                "isDeprecated": false,
776                "deprecationReason": null
777              },
778              {
779                "name": "first",
780                "description": null,
781                "type": {
782                  "kind": "SCALAR",
783                  "name": "Int",
784                  "ofType": null
785                },
786                "defaultValue": null,
787                "isDeprecated": false,
788                "deprecationReason": null
789              },
790              {
791                "name": "last",
792                "description": null,
793                "type": {
794                  "kind": "SCALAR",
795                  "name": "Int",
796                  "ofType": null
797                },
798                "defaultValue": null,
799                "isDeprecated": false,
800                "deprecationReason": null
801              }
802            ],
803            "type": {
804              "kind": "NON_NULL",
805              "name": null,
806              "ofType": {
807                "kind": "OBJECT",
808                "name": "AccountAppsConnection",
809                "ofType": null
810              }
811            },
812            "isDeprecated": false,
813            "deprecationReason": null
814          },
815          {
816            "name": "availableBuilds",
817            "description": null,
818            "args": [],
819            "type": {
820              "kind": "SCALAR",
821              "name": "Int",
822              "ofType": null
823            },
824            "isDeprecated": true,
825            "deprecationReason": "Build packs are no longer supported"
826          },
827          {
828            "name": "billing",
829            "description": "Billing information. Only visible to members with the ADMIN or OWNER role.",
830            "args": [],
831            "type": {
832              "kind": "OBJECT",
833              "name": "Billing",
834              "ofType": null
835            },
836            "isDeprecated": false,
837            "deprecationReason": null
838          },
839          {
840            "name": "billingPeriod",
841            "description": null,
842            "args": [
843              {
844                "name": "date",
845                "description": null,
846                "type": {
847                  "kind": "NON_NULL",
848                  "name": null,
849                  "ofType": {
850                    "kind": "SCALAR",
851                    "name": "DateTime",
852                    "ofType": null
853                  }
854                },
855                "defaultValue": null,
856                "isDeprecated": false,
857                "deprecationReason": null
858              }
859            ],
860            "type": {
861              "kind": "NON_NULL",
862              "name": null,
863              "ofType": {
864                "kind": "OBJECT",
865                "name": "BillingPeriod",
866                "ofType": null
867              }
868            },
869            "isDeprecated": false,
870            "deprecationReason": null
871          },
872          {
873            "name": "buildJobs",
874            "description": "Build Jobs associated with this account",
875            "args": [
876              {
877                "name": "limit",
878                "description": null,
879                "type": {
880                  "kind": "NON_NULL",
881                  "name": null,
882                  "ofType": {
883                    "kind": "SCALAR",
884                    "name": "Int",
885                    "ofType": null
886                  }
887                },
888                "defaultValue": null,
889                "isDeprecated": false,
890                "deprecationReason": null
891              },
892              {
893                "name": "offset",
894                "description": null,
895                "type": {
896                  "kind": "NON_NULL",
897                  "name": null,
898                  "ofType": {
899                    "kind": "SCALAR",
900                    "name": "Int",
901                    "ofType": null
902                  }
903                },
904                "defaultValue": null,
905                "isDeprecated": false,
906                "deprecationReason": null
907              },
908              {
909                "name": "status",
910                "description": null,
911                "type": {
912                  "kind": "ENUM",
913                  "name": "BuildJobStatus",
914                  "ofType": null
915                },
916                "defaultValue": null,
917                "isDeprecated": false,
918                "deprecationReason": null
919              }
920            ],
921            "type": {
922              "kind": "NON_NULL",
923              "name": null,
924              "ofType": {
925                "kind": "LIST",
926                "name": null,
927                "ofType": {
928                  "kind": "NON_NULL",
929                  "name": null,
930                  "ofType": {
931                    "kind": "OBJECT",
932                    "name": "BuildJob",
933                    "ofType": null
934                  }
935                }
936              }
937            },
938            "isDeprecated": false,
939            "deprecationReason": null
940          },
941          {
942            "name": "buildOrBuildJobs",
943            "description": "Coalesced Build (EAS) or BuildJob (Classic) for all apps belonging to this account.",
944            "args": [
945              {
946                "name": "createdBefore",
947                "description": " Offset the query ",
948                "type": {
949                  "kind": "SCALAR",
950                  "name": "DateTime",
951                  "ofType": null
952                },
953                "defaultValue": null,
954                "isDeprecated": false,
955                "deprecationReason": null
956              },
957              {
958                "name": "limit",
959                "description": null,
960                "type": {
961                  "kind": "NON_NULL",
962                  "name": null,
963                  "ofType": {
964                    "kind": "SCALAR",
965                    "name": "Int",
966                    "ofType": null
967                  }
968                },
969                "defaultValue": null,
970                "isDeprecated": false,
971                "deprecationReason": null
972              }
973            ],
974            "type": {
975              "kind": "NON_NULL",
976              "name": null,
977              "ofType": {
978                "kind": "LIST",
979                "name": null,
980                "ofType": {
981                  "kind": "NON_NULL",
982                  "name": null,
983                  "ofType": {
984                    "kind": "INTERFACE",
985                    "name": "BuildOrBuildJob",
986                    "ofType": null
987                  }
988                }
989              }
990            },
991            "isDeprecated": true,
992            "deprecationReason": "Use activityTimelineProjectActivities with filterTypes instead"
993          },
994          {
995            "name": "builds",
996            "description": "(EAS Build) Builds associated with this account",
997            "args": [
998              {
999                "name": "limit",
1000                "description": null,
1001                "type": {
1002                  "kind": "NON_NULL",
1003                  "name": null,
1004                  "ofType": {
1005                    "kind": "SCALAR",
1006                    "name": "Int",
1007                    "ofType": null
1008                  }
1009                },
1010                "defaultValue": null,
1011                "isDeprecated": false,
1012                "deprecationReason": null
1013              },
1014              {
1015                "name": "offset",
1016                "description": null,
1017                "type": {
1018                  "kind": "NON_NULL",
1019                  "name": null,
1020                  "ofType": {
1021                    "kind": "SCALAR",
1022                    "name": "Int",
1023                    "ofType": null
1024                  }
1025                },
1026                "defaultValue": null,
1027                "isDeprecated": false,
1028                "deprecationReason": null
1029              },
1030              {
1031                "name": "platform",
1032                "description": null,
1033                "type": {
1034                  "kind": "ENUM",
1035                  "name": "AppPlatform",
1036                  "ofType": null
1037                },
1038                "defaultValue": null,
1039                "isDeprecated": false,
1040                "deprecationReason": null
1041              },
1042              {
1043                "name": "status",
1044                "description": null,
1045                "type": {
1046                  "kind": "ENUM",
1047                  "name": "BuildStatus",
1048                  "ofType": null
1049                },
1050                "defaultValue": null,
1051                "isDeprecated": false,
1052                "deprecationReason": null
1053              }
1054            ],
1055            "type": {
1056              "kind": "NON_NULL",
1057              "name": null,
1058              "ofType": {
1059                "kind": "LIST",
1060                "name": null,
1061                "ofType": {
1062                  "kind": "NON_NULL",
1063                  "name": null,
1064                  "ofType": {
1065                    "kind": "OBJECT",
1066                    "name": "Build",
1067                    "ofType": null
1068                  }
1069                }
1070              }
1071            },
1072            "isDeprecated": false,
1073            "deprecationReason": null
1074          },
1075          {
1076            "name": "createdAt",
1077            "description": null,
1078            "args": [],
1079            "type": {
1080              "kind": "NON_NULL",
1081              "name": null,
1082              "ofType": {
1083                "kind": "SCALAR",
1084                "name": "DateTime",
1085                "ofType": null
1086              }
1087            },
1088            "isDeprecated": false,
1089            "deprecationReason": null
1090          },
1091          {
1092            "name": "environmentSecrets",
1093            "description": "Environment secrets for an account",
1094            "args": [
1095              {
1096                "name": "filterNames",
1097                "description": null,
1098                "type": {
1099                  "kind": "LIST",
1100                  "name": null,
1101                  "ofType": {
1102                    "kind": "NON_NULL",
1103                    "name": null,
1104                    "ofType": {
1105                      "kind": "SCALAR",
1106                      "name": "String",
1107                      "ofType": null
1108                    }
1109                  }
1110                },
1111                "defaultValue": null,
1112                "isDeprecated": false,
1113                "deprecationReason": null
1114              }
1115            ],
1116            "type": {
1117              "kind": "NON_NULL",
1118              "name": null,
1119              "ofType": {
1120                "kind": "LIST",
1121                "name": null,
1122                "ofType": {
1123                  "kind": "NON_NULL",
1124                  "name": null,
1125                  "ofType": {
1126                    "kind": "OBJECT",
1127                    "name": "EnvironmentSecret",
1128                    "ofType": null
1129                  }
1130                }
1131              }
1132            },
1133            "isDeprecated": false,
1134            "deprecationReason": null
1135          },
1136          {
1137            "name": "githubAppInstallations",
1138            "description": "GitHub App installations for an account",
1139            "args": [],
1140            "type": {
1141              "kind": "NON_NULL",
1142              "name": null,
1143              "ofType": {
1144                "kind": "LIST",
1145                "name": null,
1146                "ofType": {
1147                  "kind": "NON_NULL",
1148                  "name": null,
1149                  "ofType": {
1150                    "kind": "OBJECT",
1151                    "name": "GitHubAppInstallation",
1152                    "ofType": null
1153                  }
1154                }
1155              }
1156            },
1157            "isDeprecated": false,
1158            "deprecationReason": null
1159          },
1160          {
1161            "name": "googleServiceAccountKeys",
1162            "description": "Android credentials for account",
1163            "args": [],
1164            "type": {
1165              "kind": "NON_NULL",
1166              "name": null,
1167              "ofType": {
1168                "kind": "LIST",
1169                "name": null,
1170                "ofType": {
1171                  "kind": "NON_NULL",
1172                  "name": null,
1173                  "ofType": {
1174                    "kind": "OBJECT",
1175                    "name": "GoogleServiceAccountKey",
1176                    "ofType": null
1177                  }
1178                }
1179              }
1180            },
1181            "isDeprecated": false,
1182            "deprecationReason": null
1183          },
1184          {
1185            "name": "id",
1186            "description": null,
1187            "args": [],
1188            "type": {
1189              "kind": "NON_NULL",
1190              "name": null,
1191              "ofType": {
1192                "kind": "SCALAR",
1193                "name": "ID",
1194                "ofType": null
1195              }
1196            },
1197            "isDeprecated": false,
1198            "deprecationReason": null
1199          },
1200          {
1201            "name": "isCurrent",
1202            "description": null,
1203            "args": [],
1204            "type": {
1205              "kind": "NON_NULL",
1206              "name": null,
1207              "ofType": {
1208                "kind": "SCALAR",
1209                "name": "Boolean",
1210                "ofType": null
1211              }
1212            },
1213            "isDeprecated": false,
1214            "deprecationReason": null
1215          },
1216          {
1217            "name": "name",
1218            "description": null,
1219            "args": [],
1220            "type": {
1221              "kind": "NON_NULL",
1222              "name": null,
1223              "ofType": {
1224                "kind": "SCALAR",
1225                "name": "String",
1226                "ofType": null
1227              }
1228            },
1229            "isDeprecated": false,
1230            "deprecationReason": null
1231          },
1232          {
1233            "name": "offers",
1234            "description": "Offers set on this account",
1235            "args": [],
1236            "type": {
1237              "kind": "LIST",
1238              "name": null,
1239              "ofType": {
1240                "kind": "NON_NULL",
1241                "name": null,
1242                "ofType": {
1243                  "kind": "OBJECT",
1244                  "name": "Offer",
1245                  "ofType": null
1246                }
1247              }
1248            },
1249            "isDeprecated": false,
1250            "deprecationReason": null
1251          },
1252          {
1253            "name": "owner",
1254            "description": "Owning User of this account if personal account",
1255            "args": [],
1256            "type": {
1257              "kind": "OBJECT",
1258              "name": "User",
1259              "ofType": null
1260            },
1261            "isDeprecated": false,
1262            "deprecationReason": null
1263          },
1264          {
1265            "name": "ownerUserActor",
1266            "description": "Owning UserActor of this account if personal account",
1267            "args": [],
1268            "type": {
1269              "kind": "INTERFACE",
1270              "name": "UserActor",
1271              "ofType": null
1272            },
1273            "isDeprecated": false,
1274            "deprecationReason": null
1275          },
1276          {
1277            "name": "pushSecurityEnabled",
1278            "description": null,
1279            "args": [],
1280            "type": {
1281              "kind": "NON_NULL",
1282              "name": null,
1283              "ofType": {
1284                "kind": "SCALAR",
1285                "name": "Boolean",
1286                "ofType": null
1287              }
1288            },
1289            "isDeprecated": false,
1290            "deprecationReason": null
1291          },
1292          {
1293            "name": "requiresAccessTokenForPushSecurity",
1294            "description": null,
1295            "args": [],
1296            "type": {
1297              "kind": "NON_NULL",
1298              "name": null,
1299              "ofType": {
1300                "kind": "SCALAR",
1301                "name": "Boolean",
1302                "ofType": null
1303              }
1304            },
1305            "isDeprecated": true,
1306            "deprecationReason": "Legacy access tokens are deprecated"
1307          },
1308          {
1309            "name": "snacks",
1310            "description": "Snacks associated with this account",
1311            "args": [
1312              {
1313                "name": "limit",
1314                "description": null,
1315                "type": {
1316                  "kind": "NON_NULL",
1317                  "name": null,
1318                  "ofType": {
1319                    "kind": "SCALAR",
1320                    "name": "Int",
1321                    "ofType": null
1322                  }
1323                },
1324                "defaultValue": null,
1325                "isDeprecated": false,
1326                "deprecationReason": null
1327              },
1328              {
1329                "name": "offset",
1330                "description": null,
1331                "type": {
1332                  "kind": "NON_NULL",
1333                  "name": null,
1334                  "ofType": {
1335                    "kind": "SCALAR",
1336                    "name": "Int",
1337                    "ofType": null
1338                  }
1339                },
1340                "defaultValue": null,
1341                "isDeprecated": false,
1342                "deprecationReason": null
1343              }
1344            ],
1345            "type": {
1346              "kind": "NON_NULL",
1347              "name": null,
1348              "ofType": {
1349                "kind": "LIST",
1350                "name": null,
1351                "ofType": {
1352                  "kind": "NON_NULL",
1353                  "name": null,
1354                  "ofType": {
1355                    "kind": "OBJECT",
1356                    "name": "Snack",
1357                    "ofType": null
1358                  }
1359                }
1360              }
1361            },
1362            "isDeprecated": false,
1363            "deprecationReason": null
1364          },
1365          {
1366            "name": "ssoConfiguration",
1367            "description": "SSO configuration for this account",
1368            "args": [],
1369            "type": {
1370              "kind": "OBJECT",
1371              "name": "AccountSSOConfiguration",
1372              "ofType": null
1373            },
1374            "isDeprecated": false,
1375            "deprecationReason": null
1376          },
1377          {
1378            "name": "subscription",
1379            "description": "Subscription info visible to members that have VIEWER role",
1380            "args": [],
1381            "type": {
1382              "kind": "OBJECT",
1383              "name": "SubscriptionDetails",
1384              "ofType": null
1385            },
1386            "isDeprecated": false,
1387            "deprecationReason": null
1388          },
1389          {
1390            "name": "subscriptionChangesPending",
1391            "description": null,
1392            "args": [],
1393            "type": {
1394              "kind": "SCALAR",
1395              "name": "Boolean",
1396              "ofType": null
1397            },
1398            "isDeprecated": true,
1399            "deprecationReason": "No longer needed"
1400          },
1401          {
1402            "name": "timelineActivity",
1403            "description": "Coalesced project activity for an app using pagination",
1404            "args": [
1405              {
1406                "name": "after",
1407                "description": null,
1408                "type": {
1409                  "kind": "SCALAR",
1410                  "name": "String",
1411                  "ofType": null
1412                },
1413                "defaultValue": null,
1414                "isDeprecated": false,
1415                "deprecationReason": null
1416              },
1417              {
1418                "name": "before",
1419                "description": null,
1420                "type": {
1421                  "kind": "SCALAR",
1422                  "name": "String",
1423                  "ofType": null
1424                },
1425                "defaultValue": null,
1426                "isDeprecated": false,
1427                "deprecationReason": null
1428              },
1429              {
1430                "name": "filter",
1431                "description": null,
1432                "type": {
1433                  "kind": "INPUT_OBJECT",
1434                  "name": "TimelineActivityFilterInput",
1435                  "ofType": null
1436                },
1437                "defaultValue": null,
1438                "isDeprecated": false,
1439                "deprecationReason": null
1440              },
1441              {
1442                "name": "first",
1443                "description": null,
1444                "type": {
1445                  "kind": "SCALAR",
1446                  "name": "Int",
1447                  "ofType": null
1448                },
1449                "defaultValue": null,
1450                "isDeprecated": false,
1451                "deprecationReason": null
1452              },
1453              {
1454                "name": "last",
1455                "description": null,
1456                "type": {
1457                  "kind": "SCALAR",
1458                  "name": "Int",
1459                  "ofType": null
1460                },
1461                "defaultValue": null,
1462                "isDeprecated": false,
1463                "deprecationReason": null
1464              }
1465            ],
1466            "type": {
1467              "kind": "NON_NULL",
1468              "name": null,
1469              "ofType": {
1470                "kind": "OBJECT",
1471                "name": "TimelineActivityConnection",
1472                "ofType": null
1473              }
1474            },
1475            "isDeprecated": false,
1476            "deprecationReason": null
1477          },
1478          {
1479            "name": "unlimitedBuilds",
1480            "description": null,
1481            "args": [],
1482            "type": {
1483              "kind": "NON_NULL",
1484              "name": null,
1485              "ofType": {
1486                "kind": "SCALAR",
1487                "name": "Boolean",
1488                "ofType": null
1489              }
1490            },
1491            "isDeprecated": true,
1492            "deprecationReason": "See isCurrent"
1493          },
1494          {
1495            "name": "updatedAt",
1496            "description": null,
1497            "args": [],
1498            "type": {
1499              "kind": "NON_NULL",
1500              "name": null,
1501              "ofType": {
1502                "kind": "SCALAR",
1503                "name": "DateTime",
1504                "ofType": null
1505              }
1506            },
1507            "isDeprecated": false,
1508            "deprecationReason": null
1509          },
1510          {
1511            "name": "usageMetrics",
1512            "description": "Account query object for querying EAS usage metrics",
1513            "args": [],
1514            "type": {
1515              "kind": "NON_NULL",
1516              "name": null,
1517              "ofType": {
1518                "kind": "OBJECT",
1519                "name": "AccountUsageMetrics",
1520                "ofType": null
1521              }
1522            },
1523            "isDeprecated": false,
1524            "deprecationReason": null
1525          },
1526          {
1527            "name": "userActorOwner",
1528            "description": "Owning UserActor of this account if personal account",
1529            "args": [],
1530            "type": {
1531              "kind": "INTERFACE",
1532              "name": "UserActor",
1533              "ofType": null
1534            },
1535            "isDeprecated": true,
1536            "deprecationReason": "Deprecated in favor of ownerUserActor"
1537          },
1538          {
1539            "name": "userInvitations",
1540            "description": "Pending user invitations for this account",
1541            "args": [],
1542            "type": {
1543              "kind": "NON_NULL",
1544              "name": null,
1545              "ofType": {
1546                "kind": "LIST",
1547                "name": null,
1548                "ofType": {
1549                  "kind": "NON_NULL",
1550                  "name": null,
1551                  "ofType": {
1552                    "kind": "OBJECT",
1553                    "name": "UserInvitation",
1554                    "ofType": null
1555                  }
1556                }
1557              }
1558            },
1559            "isDeprecated": false,
1560            "deprecationReason": null
1561          },
1562          {
1563            "name": "users",
1564            "description": "Actors associated with this account and permissions they hold",
1565            "args": [],
1566            "type": {
1567              "kind": "NON_NULL",
1568              "name": null,
1569              "ofType": {
1570                "kind": "LIST",
1571                "name": null,
1572                "ofType": {
1573                  "kind": "NON_NULL",
1574                  "name": null,
1575                  "ofType": {
1576                    "kind": "OBJECT",
1577                    "name": "UserPermission",
1578                    "ofType": null
1579                  }
1580                }
1581              }
1582            },
1583            "isDeprecated": false,
1584            "deprecationReason": null
1585          },
1586          {
1587            "name": "willAutoRenewBuilds",
1588            "description": null,
1589            "args": [],
1590            "type": {
1591              "kind": "SCALAR",
1592              "name": "Boolean",
1593              "ofType": null
1594            },
1595            "isDeprecated": true,
1596            "deprecationReason": "Build packs are no longer supported"
1597          }
1598        ],
1599        "inputFields": null,
1600        "interfaces": [],
1601        "enumValues": null,
1602        "possibleTypes": null
1603      },
1604      {
1605        "kind": "OBJECT",
1606        "name": "AccountAppsConnection",
1607        "description": null,
1608        "fields": [
1609          {
1610            "name": "edges",
1611            "description": null,
1612            "args": [],
1613            "type": {
1614              "kind": "NON_NULL",
1615              "name": null,
1616              "ofType": {
1617                "kind": "LIST",
1618                "name": null,
1619                "ofType": {
1620                  "kind": "NON_NULL",
1621                  "name": null,
1622                  "ofType": {
1623                    "kind": "OBJECT",
1624                    "name": "AccountAppsEdge",
1625                    "ofType": null
1626                  }
1627                }
1628              }
1629            },
1630            "isDeprecated": false,
1631            "deprecationReason": null
1632          },
1633          {
1634            "name": "pageInfo",
1635            "description": null,
1636            "args": [],
1637            "type": {
1638              "kind": "NON_NULL",
1639              "name": null,
1640              "ofType": {
1641                "kind": "OBJECT",
1642                "name": "PageInfo",
1643                "ofType": null
1644              }
1645            },
1646            "isDeprecated": false,
1647            "deprecationReason": null
1648          }
1649        ],
1650        "inputFields": null,
1651        "interfaces": [],
1652        "enumValues": null,
1653        "possibleTypes": null
1654      },
1655      {
1656        "kind": "OBJECT",
1657        "name": "AccountAppsEdge",
1658        "description": null,
1659        "fields": [
1660          {
1661            "name": "cursor",
1662            "description": null,
1663            "args": [],
1664            "type": {
1665              "kind": "NON_NULL",
1666              "name": null,
1667              "ofType": {
1668                "kind": "SCALAR",
1669                "name": "String",
1670                "ofType": null
1671              }
1672            },
1673            "isDeprecated": false,
1674            "deprecationReason": null
1675          },
1676          {
1677            "name": "node",
1678            "description": null,
1679            "args": [],
1680            "type": {
1681              "kind": "NON_NULL",
1682              "name": null,
1683              "ofType": {
1684                "kind": "OBJECT",
1685                "name": "App",
1686                "ofType": null
1687              }
1688            },
1689            "isDeprecated": false,
1690            "deprecationReason": null
1691          }
1692        ],
1693        "inputFields": null,
1694        "interfaces": [],
1695        "enumValues": null,
1696        "possibleTypes": null
1697      },
1698      {
1699        "kind": "INPUT_OBJECT",
1700        "name": "AccountAppsFilterInput",
1701        "description": null,
1702        "fields": null,
1703        "inputFields": [
1704          {
1705            "name": "sortByField",
1706            "description": null,
1707            "type": {
1708              "kind": "NON_NULL",
1709              "name": null,
1710              "ofType": {
1711                "kind": "ENUM",
1712                "name": "AccountAppsSortByField",
1713                "ofType": null
1714              }
1715            },
1716            "defaultValue": null,
1717            "isDeprecated": false,
1718            "deprecationReason": null
1719          }
1720        ],
1721        "interfaces": null,
1722        "enumValues": null,
1723        "possibleTypes": null
1724      },
1725      {
1726        "kind": "ENUM",
1727        "name": "AccountAppsSortByField",
1728        "description": null,
1729        "fields": null,
1730        "inputFields": null,
1731        "interfaces": null,
1732        "enumValues": [
1733          {
1734            "name": "LATEST_ACTIVITY_TIME",
1735            "description": null,
1736            "isDeprecated": false,
1737            "deprecationReason": null
1738          },
1739          {
1740            "name": "NAME",
1741            "description": "Name prefers the display name but falls back to full_name with @account/\npart stripped.",
1742            "isDeprecated": false,
1743            "deprecationReason": null
1744          }
1745        ],
1746        "possibleTypes": null
1747      },
1748      {
1749        "kind": "INPUT_OBJECT",
1750        "name": "AccountDataInput",
1751        "description": null,
1752        "fields": null,
1753        "inputFields": [
1754          {
1755            "name": "name",
1756            "description": null,
1757            "type": {
1758              "kind": "NON_NULL",
1759              "name": null,
1760              "ofType": {
1761                "kind": "SCALAR",
1762                "name": "String",
1763                "ofType": null
1764              }
1765            },
1766            "defaultValue": null,
1767            "isDeprecated": false,
1768            "deprecationReason": null
1769          }
1770        ],
1771        "interfaces": null,
1772        "enumValues": null,
1773        "possibleTypes": null
1774      },
1775      {
1776        "kind": "OBJECT",
1777        "name": "AccountMutation",
1778        "description": null,
1779        "fields": [
1780          {
1781            "name": "buyProduct",
1782            "description": "Makes a one time purchase",
1783            "args": [
1784              {
1785                "name": "accountName",
1786                "description": null,
1787                "type": {
1788                  "kind": "NON_NULL",
1789                  "name": null,
1790                  "ofType": {
1791                    "kind": "SCALAR",
1792                    "name": "ID",
1793                    "ofType": null
1794                  }
1795                },
1796                "defaultValue": null,
1797                "isDeprecated": false,
1798                "deprecationReason": null
1799              },
1800              {
1801                "name": "autoRenew",
1802                "description": null,
1803                "type": {
1804                  "kind": "SCALAR",
1805                  "name": "Boolean",
1806                  "ofType": null
1807                },
1808                "defaultValue": null,
1809                "isDeprecated": false,
1810                "deprecationReason": null
1811              },
1812              {
1813                "name": "paymentSource",
1814                "description": null,
1815                "type": {
1816                  "kind": "SCALAR",
1817                  "name": "ID",
1818                  "ofType": null
1819                },
1820                "defaultValue": null,
1821                "isDeprecated": false,
1822                "deprecationReason": null
1823              },
1824              {
1825                "name": "productId",
1826                "description": null,
1827                "type": {
1828                  "kind": "NON_NULL",
1829                  "name": null,
1830                  "ofType": {
1831                    "kind": "SCALAR",
1832                    "name": "ID",
1833                    "ofType": null
1834                  }
1835                },
1836                "defaultValue": null,
1837                "isDeprecated": false,
1838                "deprecationReason": null
1839              }
1840            ],
1841            "type": {
1842              "kind": "OBJECT",
1843              "name": "Account",
1844              "ofType": null
1845            },
1846            "isDeprecated": true,
1847            "deprecationReason": "Build packs are no longer supported"
1848          },
1849          {
1850            "name": "cancelAllSubscriptionsImmediately",
1851            "description": "Cancels all subscriptions immediately",
1852            "args": [
1853              {
1854                "name": "accountID",
1855                "description": null,
1856                "type": {
1857                  "kind": "NON_NULL",
1858                  "name": null,
1859                  "ofType": {
1860                    "kind": "SCALAR",
1861                    "name": "ID",
1862                    "ofType": null
1863                  }
1864                },
1865                "defaultValue": null,
1866                "isDeprecated": false,
1867                "deprecationReason": null
1868              }
1869            ],
1870            "type": {
1871              "kind": "NON_NULL",
1872              "name": null,
1873              "ofType": {
1874                "kind": "OBJECT",
1875                "name": "Account",
1876                "ofType": null
1877              }
1878            },
1879            "isDeprecated": false,
1880            "deprecationReason": null
1881          },
1882          {
1883            "name": "cancelScheduledSubscriptionChange",
1884            "description": "Cancel scheduled subscription change",
1885            "args": [
1886              {
1887                "name": "accountID",
1888                "description": null,
1889                "type": {
1890                  "kind": "NON_NULL",
1891                  "name": null,
1892                  "ofType": {
1893                    "kind": "SCALAR",
1894                    "name": "ID",
1895                    "ofType": null
1896                  }
1897                },
1898                "defaultValue": null,
1899                "isDeprecated": false,
1900                "deprecationReason": null
1901              }
1902            ],
1903            "type": {
1904              "kind": "NON_NULL",
1905              "name": null,
1906              "ofType": {
1907                "kind": "OBJECT",
1908                "name": "Account",
1909                "ofType": null
1910              }
1911            },
1912            "isDeprecated": false,
1913            "deprecationReason": null
1914          },
1915          {
1916            "name": "cancelSubscription",
1917            "description": "Cancels the active subscription",
1918            "args": [
1919              {
1920                "name": "accountName",
1921                "description": null,
1922                "type": {
1923                  "kind": "NON_NULL",
1924                  "name": null,
1925                  "ofType": {
1926                    "kind": "SCALAR",
1927                    "name": "ID",
1928                    "ofType": null
1929                  }
1930                },
1931                "defaultValue": null,
1932                "isDeprecated": false,
1933                "deprecationReason": null
1934              }
1935            ],
1936            "type": {
1937              "kind": "NON_NULL",
1938              "name": null,
1939              "ofType": {
1940                "kind": "OBJECT",
1941                "name": "Account",
1942                "ofType": null
1943              }
1944            },
1945            "isDeprecated": false,
1946            "deprecationReason": null
1947          },
1948          {
1949            "name": "changePlan",
1950            "description": "Upgrades or downgrades the active subscription to the newPlanIdentifier, which must be one of the EAS plans (i.e., Production or Enterprise).",
1951            "args": [
1952              {
1953                "name": "accountID",
1954                "description": null,
1955                "type": {
1956                  "kind": "NON_NULL",
1957                  "name": null,
1958                  "ofType": {
1959                    "kind": "SCALAR",
1960                    "name": "ID",
1961                    "ofType": null
1962                  }
1963                },
1964                "defaultValue": null,
1965                "isDeprecated": false,
1966                "deprecationReason": null
1967              },
1968              {
1969                "name": "couponCode",
1970                "description": null,
1971                "type": {
1972                  "kind": "SCALAR",
1973                  "name": "String",
1974                  "ofType": null
1975                },
1976                "defaultValue": null,
1977                "isDeprecated": false,
1978                "deprecationReason": null
1979              },
1980              {
1981                "name": "newPlanIdentifier",
1982                "description": null,
1983                "type": {
1984                  "kind": "NON_NULL",
1985                  "name": null,
1986                  "ofType": {
1987                    "kind": "SCALAR",
1988                    "name": "String",
1989                    "ofType": null
1990                  }
1991                },
1992                "defaultValue": null,
1993                "isDeprecated": false,
1994                "deprecationReason": null
1995              }
1996            ],
1997            "type": {
1998              "kind": "NON_NULL",
1999              "name": null,
2000              "ofType": {
2001                "kind": "OBJECT",
2002                "name": "Account",
2003                "ofType": null
2004              }
2005            },
2006            "isDeprecated": false,
2007            "deprecationReason": null
2008          },
2009          {
2010            "name": "grantActorPermissions",
2011            "description": "Add specified account Permissions for Actor. Actor must already have at least one permission on the account.",
2012            "args": [
2013              {
2014                "name": "accountID",
2015                "description": null,
2016                "type": {
2017                  "kind": "NON_NULL",
2018                  "name": null,
2019                  "ofType": {
2020                    "kind": "SCALAR",
2021                    "name": "ID",
2022                    "ofType": null
2023                  }
2024                },
2025                "defaultValue": null,
2026                "isDeprecated": false,
2027                "deprecationReason": null
2028              },
2029              {
2030                "name": "actorID",
2031                "description": null,
2032                "type": {
2033                  "kind": "NON_NULL",
2034                  "name": null,
2035                  "ofType": {
2036                    "kind": "SCALAR",
2037                    "name": "ID",
2038                    "ofType": null
2039                  }
2040                },
2041                "defaultValue": null,
2042                "isDeprecated": false,
2043                "deprecationReason": null
2044              },
2045              {
2046                "name": "permissions",
2047                "description": null,
2048                "type": {
2049                  "kind": "LIST",
2050                  "name": null,
2051                  "ofType": {
2052                    "kind": "ENUM",
2053                    "name": "Permission",
2054                    "ofType": null
2055                  }
2056                },
2057                "defaultValue": null,
2058                "isDeprecated": false,
2059                "deprecationReason": null
2060              }
2061            ],
2062            "type": {
2063              "kind": "NON_NULL",
2064              "name": null,
2065              "ofType": {
2066                "kind": "OBJECT",
2067                "name": "Account",
2068                "ofType": null
2069              }
2070            },
2071            "isDeprecated": false,
2072            "deprecationReason": null
2073          },
2074          {
2075            "name": "rename",
2076            "description": "Rename this account and the primary user's username if this account is a personal account",
2077            "args": [
2078              {
2079                "name": "accountID",
2080                "description": null,
2081                "type": {
2082                  "kind": "NON_NULL",
2083                  "name": null,
2084                  "ofType": {
2085                    "kind": "SCALAR",
2086                    "name": "ID",
2087                    "ofType": null
2088                  }
2089                },
2090                "defaultValue": null,
2091                "isDeprecated": false,
2092                "deprecationReason": null
2093              },
2094              {
2095                "name": "newName",
2096                "description": null,
2097                "type": {
2098                  "kind": "NON_NULL",
2099                  "name": null,
2100                  "ofType": {
2101                    "kind": "SCALAR",
2102                    "name": "String",
2103                    "ofType": null
2104                  }
2105                },
2106                "defaultValue": null,
2107                "isDeprecated": false,
2108                "deprecationReason": null
2109              }
2110            ],
2111            "type": {
2112              "kind": "NON_NULL",
2113              "name": null,
2114              "ofType": {
2115                "kind": "OBJECT",
2116                "name": "Account",
2117                "ofType": null
2118              }
2119            },
2120            "isDeprecated": false,
2121            "deprecationReason": null
2122          },
2123          {
2124            "name": "requestRefund",
2125            "description": "Requests a refund for the specified charge by requesting a manual refund from support",
2126            "args": [
2127              {
2128                "name": "accountID",
2129                "description": null,
2130                "type": {
2131                  "kind": "NON_NULL",
2132                  "name": null,
2133                  "ofType": {
2134                    "kind": "SCALAR",
2135                    "name": "ID",
2136                    "ofType": null
2137                  }
2138                },
2139                "defaultValue": null,
2140                "isDeprecated": false,
2141                "deprecationReason": null
2142              },
2143              {
2144                "name": "chargeID",
2145                "description": null,
2146                "type": {
2147                  "kind": "NON_NULL",
2148                  "name": null,
2149                  "ofType": {
2150                    "kind": "SCALAR",
2151                    "name": "ID",
2152                    "ofType": null
2153                  }
2154                },
2155                "defaultValue": null,
2156                "isDeprecated": false,
2157                "deprecationReason": null
2158              },
2159              {
2160                "name": "description",
2161                "description": null,
2162                "type": {
2163                  "kind": "SCALAR",
2164                  "name": "String",
2165                  "ofType": null
2166                },
2167                "defaultValue": null,
2168                "isDeprecated": false,
2169                "deprecationReason": null
2170              },
2171              {
2172                "name": "reason",
2173                "description": null,
2174                "type": {
2175                  "kind": "SCALAR",
2176                  "name": "String",
2177                  "ofType": null
2178                },
2179                "defaultValue": null,
2180                "isDeprecated": false,
2181                "deprecationReason": null
2182              }
2183            ],
2184            "type": {
2185              "kind": "SCALAR",
2186              "name": "Boolean",
2187              "ofType": null
2188            },
2189            "isDeprecated": false,
2190            "deprecationReason": null
2191          },
2192          {
2193            "name": "revokeActorPermissions",
2194            "description": "Revoke specified Permissions for Actor. Actor must already have at least one permission on the account.",
2195            "args": [
2196              {
2197                "name": "accountID",
2198                "description": null,
2199                "type": {
2200                  "kind": "NON_NULL",
2201                  "name": null,
2202                  "ofType": {
2203                    "kind": "SCALAR",
2204                    "name": "ID",
2205                    "ofType": null
2206                  }
2207                },
2208                "defaultValue": null,
2209                "isDeprecated": false,
2210                "deprecationReason": null
2211              },
2212              {
2213                "name": "actorID",
2214                "description": null,
2215                "type": {
2216                  "kind": "NON_NULL",
2217                  "name": null,
2218                  "ofType": {
2219                    "kind": "SCALAR",
2220                    "name": "ID",
2221                    "ofType": null
2222                  }
2223                },
2224                "defaultValue": null,
2225                "isDeprecated": false,
2226                "deprecationReason": null
2227              },
2228              {
2229                "name": "permissions",
2230                "description": null,
2231                "type": {
2232                  "kind": "LIST",
2233                  "name": null,
2234                  "ofType": {
2235                    "kind": "ENUM",
2236                    "name": "Permission",
2237                    "ofType": null
2238                  }
2239                },
2240                "defaultValue": null,
2241                "isDeprecated": false,
2242                "deprecationReason": null
2243              }
2244            ],
2245            "type": {
2246              "kind": "NON_NULL",
2247              "name": null,
2248              "ofType": {
2249                "kind": "OBJECT",
2250                "name": "Account",
2251                "ofType": null
2252              }
2253            },
2254            "isDeprecated": false,
2255            "deprecationReason": null
2256          },
2257          {
2258            "name": "setBuildAutoRenew",
2259            "description": "Update setting to purchase new build packs when the current one is consumed",
2260            "args": [
2261              {
2262                "name": "accountName",
2263                "description": null,
2264                "type": {
2265                  "kind": "NON_NULL",
2266                  "name": null,
2267                  "ofType": {
2268                    "kind": "SCALAR",
2269                    "name": "ID",
2270                    "ofType": null
2271                  }
2272                },
2273                "defaultValue": null,
2274                "isDeprecated": false,
2275                "deprecationReason": null
2276              },
2277              {
2278                "name": "autoRenew",
2279                "description": null,
2280                "type": {
2281                  "kind": "SCALAR",
2282                  "name": "Boolean",
2283                  "ofType": null
2284                },
2285                "defaultValue": null,
2286                "isDeprecated": false,
2287                "deprecationReason": null
2288              }
2289            ],
2290            "type": {
2291              "kind": "OBJECT",
2292              "name": "Account",
2293              "ofType": null
2294            },
2295            "isDeprecated": true,
2296            "deprecationReason": "Build packs are no longer supported"
2297          },
2298          {
2299            "name": "setPaymentSource",
2300            "description": "Set payment details",
2301            "args": [
2302              {
2303                "name": "accountName",
2304                "description": null,
2305                "type": {
2306                  "kind": "NON_NULL",
2307                  "name": null,
2308                  "ofType": {
2309                    "kind": "SCALAR",
2310                    "name": "ID",
2311                    "ofType": null
2312                  }
2313                },
2314                "defaultValue": null,
2315                "isDeprecated": false,
2316                "deprecationReason": null
2317              },
2318              {
2319                "name": "paymentSource",
2320                "description": null,
2321                "type": {
2322                  "kind": "NON_NULL",
2323                  "name": null,
2324                  "ofType": {
2325                    "kind": "SCALAR",
2326                    "name": "ID",
2327                    "ofType": null
2328                  }
2329                },
2330                "defaultValue": null,
2331                "isDeprecated": false,
2332                "deprecationReason": null
2333              }
2334            ],
2335            "type": {
2336              "kind": "NON_NULL",
2337              "name": null,
2338              "ofType": {
2339                "kind": "OBJECT",
2340                "name": "Account",
2341                "ofType": null
2342              }
2343            },
2344            "isDeprecated": false,
2345            "deprecationReason": null
2346          },
2347          {
2348            "name": "setPushSecurityEnabled",
2349            "description": "Require authorization to send push notifications for experiences owned by this account",
2350            "args": [
2351              {
2352                "name": "accountID",
2353                "description": null,
2354                "type": {
2355                  "kind": "NON_NULL",
2356                  "name": null,
2357                  "ofType": {
2358                    "kind": "SCALAR",
2359                    "name": "ID",
2360                    "ofType": null
2361                  }
2362                },
2363                "defaultValue": null,
2364                "isDeprecated": false,
2365                "deprecationReason": null
2366              },
2367              {
2368                "name": "pushSecurityEnabled",
2369                "description": null,
2370                "type": {
2371                  "kind": "NON_NULL",
2372                  "name": null,
2373                  "ofType": {
2374                    "kind": "SCALAR",
2375                    "name": "Boolean",
2376                    "ofType": null
2377                  }
2378                },
2379                "defaultValue": null,
2380                "isDeprecated": false,
2381                "deprecationReason": null
2382              }
2383            ],
2384            "type": {
2385              "kind": "NON_NULL",
2386              "name": null,
2387              "ofType": {
2388                "kind": "OBJECT",
2389                "name": "Account",
2390                "ofType": null
2391              }
2392            },
2393            "isDeprecated": false,
2394            "deprecationReason": null
2395          }
2396        ],
2397        "inputFields": null,
2398        "interfaces": [],
2399        "enumValues": null,
2400        "possibleTypes": null
2401      },
2402      {
2403        "kind": "INPUT_OBJECT",
2404        "name": "AccountNotificationSubscriptionInput",
2405        "description": null,
2406        "fields": null,
2407        "inputFields": [
2408          {
2409            "name": "accountId",
2410            "description": null,
2411            "type": {
2412              "kind": "NON_NULL",
2413              "name": null,
2414              "ofType": {
2415                "kind": "SCALAR",
2416                "name": "ID",
2417                "ofType": null
2418              }
2419            },
2420            "defaultValue": null,
2421            "isDeprecated": false,
2422            "deprecationReason": null
2423          },
2424          {
2425            "name": "event",
2426            "description": null,
2427            "type": {
2428              "kind": "NON_NULL",
2429              "name": null,
2430              "ofType": {
2431                "kind": "ENUM",
2432                "name": "NotificationEvent",
2433                "ofType": null
2434              }
2435            },
2436            "defaultValue": null,
2437            "isDeprecated": false,
2438            "deprecationReason": null
2439          },
2440          {
2441            "name": "type",
2442            "description": null,
2443            "type": {
2444              "kind": "NON_NULL",
2445              "name": null,
2446              "ofType": {
2447                "kind": "ENUM",
2448                "name": "NotificationType",
2449                "ofType": null
2450              }
2451            },
2452            "defaultValue": null,
2453            "isDeprecated": false,
2454            "deprecationReason": null
2455          },
2456          {
2457            "name": "userId",
2458            "description": null,
2459            "type": {
2460              "kind": "NON_NULL",
2461              "name": null,
2462              "ofType": {
2463                "kind": "SCALAR",
2464                "name": "ID",
2465                "ofType": null
2466              }
2467            },
2468            "defaultValue": null,
2469            "isDeprecated": false,
2470            "deprecationReason": null
2471          }
2472        ],
2473        "interfaces": null,
2474        "enumValues": null,
2475        "possibleTypes": null
2476      },
2477      {
2478        "kind": "OBJECT",
2479        "name": "AccountQuery",
2480        "description": null,
2481        "fields": [
2482          {
2483            "name": "byId",
2484            "description": "Query an Account by ID",
2485            "args": [
2486              {
2487                "name": "accountId",
2488                "description": "Account id to use to look up account",
2489                "type": {
2490                  "kind": "NON_NULL",
2491                  "name": null,
2492                  "ofType": {
2493                    "kind": "SCALAR",
2494                    "name": "String",
2495                    "ofType": null
2496                  }
2497                },
2498                "defaultValue": null,
2499                "isDeprecated": false,
2500                "deprecationReason": null
2501              }
2502            ],
2503            "type": {
2504              "kind": "NON_NULL",
2505              "name": null,
2506              "ofType": {
2507                "kind": "OBJECT",
2508                "name": "Account",
2509                "ofType": null
2510              }
2511            },
2512            "isDeprecated": false,
2513            "deprecationReason": null
2514          },
2515          {
2516            "name": "byName",
2517            "description": "Query an Account by name",
2518            "args": [
2519              {
2520                "name": "accountName",
2521                "description": "Account name to use to look up account",
2522                "type": {
2523                  "kind": "NON_NULL",
2524                  "name": null,
2525                  "ofType": {
2526                    "kind": "SCALAR",
2527                    "name": "String",
2528                    "ofType": null
2529                  }
2530                },
2531                "defaultValue": null,
2532                "isDeprecated": false,
2533                "deprecationReason": null
2534              }
2535            ],
2536            "type": {
2537              "kind": "NON_NULL",
2538              "name": null,
2539              "ofType": {
2540                "kind": "OBJECT",
2541                "name": "Account",
2542                "ofType": null
2543              }
2544            },
2545            "isDeprecated": false,
2546            "deprecationReason": null
2547          }
2548        ],
2549        "inputFields": null,
2550        "interfaces": [],
2551        "enumValues": null,
2552        "possibleTypes": null
2553      },
2554      {
2555        "kind": "OBJECT",
2556        "name": "AccountSSOConfiguration",
2557        "description": "Auth configuration data for an SSO account.",
2558        "fields": [
2559          {
2560            "name": "authEndpoint",
2561            "description": null,
2562            "args": [],
2563            "type": {
2564              "kind": "SCALAR",
2565              "name": "String",
2566              "ofType": null
2567            },
2568            "isDeprecated": false,
2569            "deprecationReason": null
2570          },
2571          {
2572            "name": "authProtocol",
2573            "description": null,
2574            "args": [],
2575            "type": {
2576              "kind": "NON_NULL",
2577              "name": null,
2578              "ofType": {
2579                "kind": "ENUM",
2580                "name": "AuthProtocolType",
2581                "ofType": null
2582              }
2583            },
2584            "isDeprecated": false,
2585            "deprecationReason": null
2586          },
2587          {
2588            "name": "authProviderIdentifier",
2589            "description": null,
2590            "args": [],
2591            "type": {
2592              "kind": "NON_NULL",
2593              "name": null,
2594              "ofType": {
2595                "kind": "SCALAR",
2596                "name": "String",
2597                "ofType": null
2598              }
2599            },
2600            "isDeprecated": false,
2601            "deprecationReason": null
2602          },
2603          {
2604            "name": "clientIdentifier",
2605            "description": null,
2606            "args": [],
2607            "type": {
2608              "kind": "NON_NULL",
2609              "name": null,
2610              "ofType": {
2611                "kind": "SCALAR",
2612                "name": "String",
2613                "ofType": null
2614              }
2615            },
2616            "isDeprecated": false,
2617            "deprecationReason": null
2618          },
2619          {
2620            "name": "clientSecret",
2621            "description": null,
2622            "args": [],
2623            "type": {
2624              "kind": "NON_NULL",
2625              "name": null,
2626              "ofType": {
2627                "kind": "SCALAR",
2628                "name": "String",
2629                "ofType": null
2630              }
2631            },
2632            "isDeprecated": false,
2633            "deprecationReason": null
2634          },
2635          {
2636            "name": "createdAt",
2637            "description": null,
2638            "args": [],
2639            "type": {
2640              "kind": "NON_NULL",
2641              "name": null,
2642              "ofType": {
2643                "kind": "SCALAR",
2644                "name": "DateTime",
2645                "ofType": null
2646              }
2647            },
2648            "isDeprecated": false,
2649            "deprecationReason": null
2650          },
2651          {
2652            "name": "endSessionEndpoint",
2653            "description": null,
2654            "args": [],
2655            "type": {
2656              "kind": "SCALAR",
2657              "name": "String",
2658              "ofType": null
2659            },
2660            "isDeprecated": false,
2661            "deprecationReason": null
2662          },
2663          {
2664            "name": "id",
2665            "description": null,
2666            "args": [],
2667            "type": {
2668              "kind": "NON_NULL",
2669              "name": null,
2670              "ofType": {
2671                "kind": "SCALAR",
2672                "name": "ID",
2673                "ofType": null
2674              }
2675            },
2676            "isDeprecated": false,
2677            "deprecationReason": null
2678          },
2679          {
2680            "name": "issuer",
2681            "description": null,
2682            "args": [],
2683            "type": {
2684              "kind": "NON_NULL",
2685              "name": null,
2686              "ofType": {
2687                "kind": "SCALAR",
2688                "name": "String",
2689                "ofType": null
2690              }
2691            },
2692            "isDeprecated": false,
2693            "deprecationReason": null
2694          },
2695          {
2696            "name": "jwksEndpoint",
2697            "description": null,
2698            "args": [],
2699            "type": {
2700              "kind": "SCALAR",
2701              "name": "String",
2702              "ofType": null
2703            },
2704            "isDeprecated": false,
2705            "deprecationReason": null
2706          },
2707          {
2708            "name": "revokeEndpoint",
2709            "description": null,
2710            "args": [],
2711            "type": {
2712              "kind": "SCALAR",
2713              "name": "String",
2714              "ofType": null
2715            },
2716            "isDeprecated": false,
2717            "deprecationReason": null
2718          },
2719          {
2720            "name": "tokenEndpoint",
2721            "description": null,
2722            "args": [],
2723            "type": {
2724              "kind": "SCALAR",
2725              "name": "String",
2726              "ofType": null
2727            },
2728            "isDeprecated": false,
2729            "deprecationReason": null
2730          },
2731          {
2732            "name": "updatedAt",
2733            "description": null,
2734            "args": [],
2735            "type": {
2736              "kind": "NON_NULL",
2737              "name": null,
2738              "ofType": {
2739                "kind": "SCALAR",
2740                "name": "DateTime",
2741                "ofType": null
2742              }
2743            },
2744            "isDeprecated": false,
2745            "deprecationReason": null
2746          },
2747          {
2748            "name": "userInfoEndpoint",
2749            "description": null,
2750            "args": [],
2751            "type": {
2752              "kind": "SCALAR",
2753              "name": "String",
2754              "ofType": null
2755            },
2756            "isDeprecated": false,
2757            "deprecationReason": null
2758          }
2759        ],
2760        "inputFields": null,
2761        "interfaces": [],
2762        "enumValues": null,
2763        "possibleTypes": null
2764      },
2765      {
2766        "kind": "INPUT_OBJECT",
2767        "name": "AccountSSOConfigurationData",
2768        "description": null,
2769        "fields": null,
2770        "inputFields": [
2771          {
2772            "name": "authEndpoint",
2773            "description": null,
2774            "type": {
2775              "kind": "SCALAR",
2776              "name": "String",
2777              "ofType": null
2778            },
2779            "defaultValue": null,
2780            "isDeprecated": false,
2781            "deprecationReason": null
2782          },
2783          {
2784            "name": "authProtocol",
2785            "description": null,
2786            "type": {
2787              "kind": "NON_NULL",
2788              "name": null,
2789              "ofType": {
2790                "kind": "ENUM",
2791                "name": "AuthProtocolType",
2792                "ofType": null
2793              }
2794            },
2795            "defaultValue": null,
2796            "isDeprecated": false,
2797            "deprecationReason": null
2798          },
2799          {
2800            "name": "authProviderIdentifier",
2801            "description": null,
2802            "type": {
2803              "kind": "NON_NULL",
2804              "name": null,
2805              "ofType": {
2806                "kind": "SCALAR",
2807                "name": "String",
2808                "ofType": null
2809              }
2810            },
2811            "defaultValue": null,
2812            "isDeprecated": false,
2813            "deprecationReason": null
2814          },
2815          {
2816            "name": "clientIdentifier",
2817            "description": null,
2818            "type": {
2819              "kind": "NON_NULL",
2820              "name": null,
2821              "ofType": {
2822                "kind": "SCALAR",
2823                "name": "String",
2824                "ofType": null
2825              }
2826            },
2827            "defaultValue": null,
2828            "isDeprecated": false,
2829            "deprecationReason": null
2830          },
2831          {
2832            "name": "clientSecret",
2833            "description": null,
2834            "type": {
2835              "kind": "NON_NULL",
2836              "name": null,
2837              "ofType": {
2838                "kind": "SCALAR",
2839                "name": "String",
2840                "ofType": null
2841              }
2842            },
2843            "defaultValue": null,
2844            "isDeprecated": false,
2845            "deprecationReason": null
2846          },
2847          {
2848            "name": "endSessionEndpoint",
2849            "description": null,
2850            "type": {
2851              "kind": "SCALAR",
2852              "name": "String",
2853              "ofType": null
2854            },
2855            "defaultValue": null,
2856            "isDeprecated": false,
2857            "deprecationReason": null
2858          },
2859          {
2860            "name": "issuer",
2861            "description": null,
2862            "type": {
2863              "kind": "NON_NULL",
2864              "name": null,
2865              "ofType": {
2866                "kind": "SCALAR",
2867                "name": "String",
2868                "ofType": null
2869              }
2870            },
2871            "defaultValue": null,
2872            "isDeprecated": false,
2873            "deprecationReason": null
2874          },
2875          {
2876            "name": "jwksEndpoint",
2877            "description": null,
2878            "type": {
2879              "kind": "SCALAR",
2880              "name": "String",
2881              "ofType": null
2882            },
2883            "defaultValue": null,
2884            "isDeprecated": false,
2885            "deprecationReason": null
2886          },
2887          {
2888            "name": "revokeEndpoint",
2889            "description": null,
2890            "type": {
2891              "kind": "SCALAR",
2892              "name": "String",
2893              "ofType": null
2894            },
2895            "defaultValue": null,
2896            "isDeprecated": false,
2897            "deprecationReason": null
2898          },
2899          {
2900            "name": "tokenEndpoint",
2901            "description": null,
2902            "type": {
2903              "kind": "SCALAR",
2904              "name": "String",
2905              "ofType": null
2906            },
2907            "defaultValue": null,
2908            "isDeprecated": false,
2909            "deprecationReason": null
2910          },
2911          {
2912            "name": "userInfoEndpoint",
2913            "description": null,
2914            "type": {
2915              "kind": "SCALAR",
2916              "name": "String",
2917              "ofType": null
2918            },
2919            "defaultValue": null,
2920            "isDeprecated": false,
2921            "deprecationReason": null
2922          }
2923        ],
2924        "interfaces": null,
2925        "enumValues": null,
2926        "possibleTypes": null
2927      },
2928      {
2929        "kind": "OBJECT",
2930        "name": "AccountSSOConfigurationMutation",
2931        "description": null,
2932        "fields": [
2933          {
2934            "name": "createAccountSSOConfiguration",
2935            "description": "Create an AccountSSOConfiguration for an Account",
2936            "args": [
2937              {
2938                "name": "accountId",
2939                "description": null,
2940                "type": {
2941                  "kind": "NON_NULL",
2942                  "name": null,
2943                  "ofType": {
2944                    "kind": "SCALAR",
2945                    "name": "ID",
2946                    "ofType": null
2947                  }
2948                },
2949                "defaultValue": null,
2950                "isDeprecated": false,
2951                "deprecationReason": null
2952              },
2953              {
2954                "name": "accountSSOConfigurationData",
2955                "description": null,
2956                "type": {
2957                  "kind": "NON_NULL",
2958                  "name": null,
2959                  "ofType": {
2960                    "kind": "INPUT_OBJECT",
2961                    "name": "AccountSSOConfigurationData",
2962                    "ofType": null
2963                  }
2964                },
2965                "defaultValue": null,
2966                "isDeprecated": false,
2967                "deprecationReason": null
2968              }
2969            ],
2970            "type": {
2971              "kind": "NON_NULL",
2972              "name": null,
2973              "ofType": {
2974                "kind": "OBJECT",
2975                "name": "AccountSSOConfiguration",
2976                "ofType": null
2977              }
2978            },
2979            "isDeprecated": false,
2980            "deprecationReason": null
2981          },
2982          {
2983            "name": "deleteAccountSSOConfiguration",
2984            "description": "Delete an AccountSSOConfiguration",
2985            "args": [
2986              {
2987                "name": "id",
2988                "description": null,
2989                "type": {
2990                  "kind": "NON_NULL",
2991                  "name": null,
2992                  "ofType": {
2993                    "kind": "SCALAR",
2994                    "name": "ID",
2995                    "ofType": null
2996                  }
2997                },
2998                "defaultValue": null,
2999                "isDeprecated": false,
3000                "deprecationReason": null
3001              }
3002            ],
3003            "type": {
3004              "kind": "NON_NULL",
3005              "name": null,
3006              "ofType": {
3007                "kind": "OBJECT",
3008                "name": "DeleteAccountSSOConfigurationResult",
3009                "ofType": null
3010              }
3011            },
3012            "isDeprecated": false,
3013            "deprecationReason": null
3014          },
3015          {
3016            "name": "updateAccountSSOConfiguration",
3017            "description": "Update an AccountSSOConfiguration",
3018            "args": [
3019              {
3020                "name": "accountSSOConfigurationData",
3021                "description": null,
3022                "type": {
3023                  "kind": "NON_NULL",
3024                  "name": null,
3025                  "ofType": {
3026                    "kind": "INPUT_OBJECT",
3027                    "name": "AccountSSOConfigurationData",
3028                    "ofType": null
3029                  }
3030                },
3031                "defaultValue": null,
3032                "isDeprecated": false,
3033                "deprecationReason": null
3034              },
3035              {
3036                "name": "id",
3037                "description": null,
3038                "type": {
3039                  "kind": "NON_NULL",
3040                  "name": null,
3041                  "ofType": {
3042                    "kind": "SCALAR",
3043                    "name": "ID",
3044                    "ofType": null
3045                  }
3046                },
3047                "defaultValue": null,
3048                "isDeprecated": false,
3049                "deprecationReason": null
3050              }
3051            ],
3052            "type": {
3053              "kind": "NON_NULL",
3054              "name": null,
3055              "ofType": {
3056                "kind": "OBJECT",
3057                "name": "AccountSSOConfiguration",
3058                "ofType": null
3059              }
3060            },
3061            "isDeprecated": false,
3062            "deprecationReason": null
3063          }
3064        ],
3065        "inputFields": null,
3066        "interfaces": [],
3067        "enumValues": null,
3068        "possibleTypes": null
3069      },
3070      {
3071        "kind": "OBJECT",
3072        "name": "AccountSSOConfigurationPublicData",
3073        "description": "Public auth configuration data for an SSO account.",
3074        "fields": [
3075          {
3076            "name": "authEndpoint",
3077            "description": null,
3078            "args": [],
3079            "type": {
3080              "kind": "SCALAR",
3081              "name": "String",
3082              "ofType": null
3083            },
3084            "isDeprecated": false,
3085            "deprecationReason": null
3086          },
3087          {
3088            "name": "authProtocol",
3089            "description": null,
3090            "args": [],
3091            "type": {
3092              "kind": "NON_NULL",
3093              "name": null,
3094              "ofType": {
3095                "kind": "ENUM",
3096                "name": "AuthProtocolType",
3097                "ofType": null
3098              }
3099            },
3100            "isDeprecated": false,
3101            "deprecationReason": null
3102          },
3103          {
3104            "name": "authProviderIdentifier",
3105            "description": null,
3106            "args": [],
3107            "type": {
3108              "kind": "NON_NULL",
3109              "name": null,
3110              "ofType": {
3111                "kind": "SCALAR",
3112                "name": "String",
3113                "ofType": null
3114              }
3115            },
3116            "isDeprecated": false,
3117            "deprecationReason": null
3118          },
3119          {
3120            "name": "clientIdentifier",
3121            "description": null,
3122            "args": [],
3123            "type": {
3124              "kind": "NON_NULL",
3125              "name": null,
3126              "ofType": {
3127                "kind": "SCALAR",
3128                "name": "String",
3129                "ofType": null
3130              }
3131            },
3132            "isDeprecated": false,
3133            "deprecationReason": null
3134          },
3135          {
3136            "name": "endSessionEndpoint",
3137            "description": null,
3138            "args": [],
3139            "type": {
3140              "kind": "SCALAR",
3141              "name": "String",
3142              "ofType": null
3143            },
3144            "isDeprecated": false,
3145            "deprecationReason": null
3146          },
3147          {
3148            "name": "id",
3149            "description": null,
3150            "args": [],
3151            "type": {
3152              "kind": "NON_NULL",
3153              "name": null,
3154              "ofType": {
3155                "kind": "SCALAR",
3156                "name": "ID",
3157                "ofType": null
3158              }
3159            },
3160            "isDeprecated": false,
3161            "deprecationReason": null
3162          },
3163          {
3164            "name": "issuer",
3165            "description": null,
3166            "args": [],
3167            "type": {
3168              "kind": "NON_NULL",
3169              "name": null,
3170              "ofType": {
3171                "kind": "SCALAR",
3172                "name": "String",
3173                "ofType": null
3174              }
3175            },
3176            "isDeprecated": false,
3177            "deprecationReason": null
3178          },
3179          {
3180            "name": "jwksEndpoint",
3181            "description": null,
3182            "args": [],
3183            "type": {
3184              "kind": "SCALAR",
3185              "name": "String",
3186              "ofType": null
3187            },
3188            "isDeprecated": false,
3189            "deprecationReason": null
3190          },
3191          {
3192            "name": "revokeEndpoint",
3193            "description": null,
3194            "args": [],
3195            "type": {
3196              "kind": "SCALAR",
3197              "name": "String",
3198              "ofType": null
3199            },
3200            "isDeprecated": false,
3201            "deprecationReason": null
3202          },
3203          {
3204            "name": "tokenEndpoint",
3205            "description": null,
3206            "args": [],
3207            "type": {
3208              "kind": "SCALAR",
3209              "name": "String",
3210              "ofType": null
3211            },
3212            "isDeprecated": false,
3213            "deprecationReason": null
3214          },
3215          {
3216            "name": "userInfoEndpoint",
3217            "description": null,
3218            "args": [],
3219            "type": {
3220              "kind": "SCALAR",
3221              "name": "String",
3222              "ofType": null
3223            },
3224            "isDeprecated": false,
3225            "deprecationReason": null
3226          }
3227        ],
3228        "inputFields": null,
3229        "interfaces": [],
3230        "enumValues": null,
3231        "possibleTypes": null
3232      },
3233      {
3234        "kind": "OBJECT",
3235        "name": "AccountSSOConfigurationPublicDataQuery",
3236        "description": null,
3237        "fields": [
3238          {
3239            "name": "publicDataByAccountName",
3240            "description": "Get AccountSSOConfiguration public data by account name",
3241            "args": [
3242              {
3243                "name": "accountName",
3244                "description": "Account name to use to look up account SSO configuration",
3245                "type": {
3246                  "kind": "NON_NULL",
3247                  "name": null,
3248                  "ofType": {
3249                    "kind": "SCALAR",
3250                    "name": "String",
3251                    "ofType": null
3252                  }
3253                },
3254                "defaultValue": null,
3255                "isDeprecated": false,
3256                "deprecationReason": null
3257              }
3258            ],
3259            "type": {
3260              "kind": "NON_NULL",
3261              "name": null,
3262              "ofType": {
3263                "kind": "OBJECT",
3264                "name": "AccountSSOConfigurationPublicData",
3265                "ofType": null
3266              }
3267            },
3268            "isDeprecated": false,
3269            "deprecationReason": null
3270          }
3271        ],
3272        "inputFields": null,
3273        "interfaces": [],
3274        "enumValues": null,
3275        "possibleTypes": null
3276      },
3277      {
3278        "kind": "OBJECT",
3279        "name": "AccountUsageEASBuildMetadata",
3280        "description": null,
3281        "fields": [
3282          {
3283            "name": "billingResourceClass",
3284            "description": null,
3285            "args": [],
3286            "type": {
3287              "kind": "NON_NULL",
3288              "name": null,
3289              "ofType": {
3290                "kind": "ENUM",
3291                "name": "EASBuildBillingResourceClass",
3292                "ofType": null
3293              }
3294            },
3295            "isDeprecated": false,
3296            "deprecationReason": null
3297          },
3298          {
3299            "name": "platform",
3300            "description": null,
3301            "args": [],
3302            "type": {
3303              "kind": "NON_NULL",
3304              "name": null,
3305              "ofType": {
3306                "kind": "ENUM",
3307                "name": "AppPlatform",
3308                "ofType": null
3309              }
3310            },
3311            "isDeprecated": false,
3312            "deprecationReason": null
3313          }
3314        ],
3315        "inputFields": null,
3316        "interfaces": [],
3317        "enumValues": null,
3318        "possibleTypes": null
3319      },
3320      {
3321        "kind": "UNION",
3322        "name": "AccountUsageMetadata",
3323        "description": null,
3324        "fields": null,
3325        "inputFields": null,
3326        "interfaces": null,
3327        "enumValues": null,
3328        "possibleTypes": [
3329          {
3330            "kind": "OBJECT",
3331            "name": "AccountUsageEASBuildMetadata",
3332            "ofType": null
3333          }
3334        ]
3335      },
3336      {
3337        "kind": "OBJECT",
3338        "name": "AccountUsageMetric",
3339        "description": null,
3340        "fields": [
3341          {
3342            "name": "id",
3343            "description": null,
3344            "args": [],
3345            "type": {
3346              "kind": "NON_NULL",
3347              "name": null,
3348              "ofType": {
3349                "kind": "SCALAR",
3350                "name": "ID",
3351                "ofType": null
3352              }
3353            },
3354            "isDeprecated": false,
3355            "deprecationReason": null
3356          },
3357          {
3358            "name": "metricType",
3359            "description": null,
3360            "args": [],
3361            "type": {
3362              "kind": "NON_NULL",
3363              "name": null,
3364              "ofType": {
3365                "kind": "ENUM",
3366                "name": "UsageMetricType",
3367                "ofType": null
3368              }
3369            },
3370            "isDeprecated": false,
3371            "deprecationReason": null
3372          },
3373          {
3374            "name": "serviceMetric",
3375            "description": null,
3376            "args": [],
3377            "type": {
3378              "kind": "NON_NULL",
3379              "name": null,
3380              "ofType": {
3381                "kind": "ENUM",
3382                "name": "EASServiceMetric",
3383                "ofType": null
3384              }
3385            },
3386            "isDeprecated": false,
3387            "deprecationReason": null
3388          },
3389          {
3390            "name": "timestamp",
3391            "description": null,
3392            "args": [],
3393            "type": {
3394              "kind": "NON_NULL",
3395              "name": null,
3396              "ofType": {
3397                "kind": "SCALAR",
3398                "name": "DateTime",
3399                "ofType": null
3400              }
3401            },
3402            "isDeprecated": false,
3403            "deprecationReason": null
3404          },
3405          {
3406            "name": "value",
3407            "description": null,
3408            "args": [],
3409            "type": {
3410              "kind": "NON_NULL",
3411              "name": null,
3412              "ofType": {
3413                "kind": "SCALAR",
3414                "name": "Float",
3415                "ofType": null
3416              }
3417            },
3418            "isDeprecated": false,
3419            "deprecationReason": null
3420          }
3421        ],
3422        "inputFields": null,
3423        "interfaces": [],
3424        "enumValues": null,
3425        "possibleTypes": null
3426      },
3427      {
3428        "kind": "OBJECT",
3429        "name": "AccountUsageMetrics",
3430        "description": null,
3431        "fields": [
3432          {
3433            "name": "byBillingPeriod",
3434            "description": null,
3435            "args": [
3436              {
3437                "name": "date",
3438                "description": null,
3439                "type": {
3440                  "kind": "NON_NULL",
3441                  "name": null,
3442                  "ofType": {
3443                    "kind": "SCALAR",
3444                    "name": "DateTime",
3445                    "ofType": null
3446                  }
3447                },
3448                "defaultValue": null,
3449                "isDeprecated": false,
3450                "deprecationReason": null
3451              },
3452              {
3453                "name": "service",
3454                "description": null,
3455                "type": {
3456                  "kind": "ENUM",
3457                  "name": "EASService",
3458                  "ofType": null
3459                },
3460                "defaultValue": null,
3461                "isDeprecated": false,
3462                "deprecationReason": null
3463              }
3464            ],
3465            "type": {
3466              "kind": "NON_NULL",
3467              "name": null,
3468              "ofType": {
3469                "kind": "OBJECT",
3470                "name": "UsageMetricTotal",
3471                "ofType": null
3472              }
3473            },
3474            "isDeprecated": false,
3475            "deprecationReason": null
3476          },
3477          {
3478            "name": "metricsForServiceMetric",
3479            "description": null,
3480            "args": [
3481              {
3482                "name": "filterParams",
3483                "description": null,
3484                "type": {
3485                  "kind": "SCALAR",
3486                  "name": "JSONObject",
3487                  "ofType": null
3488                },
3489                "defaultValue": null,
3490                "isDeprecated": false,
3491                "deprecationReason": null
3492              },
3493              {
3494                "name": "granularity",
3495                "description": null,
3496                "type": {
3497                  "kind": "NON_NULL",
3498                  "name": null,
3499                  "ofType": {
3500                    "kind": "ENUM",
3501                    "name": "UsageMetricsGranularity",
3502                    "ofType": null
3503                  }
3504                },
3505                "defaultValue": null,
3506                "isDeprecated": false,
3507                "deprecationReason": null
3508              },
3509              {
3510                "name": "serviceMetric",
3511                "description": null,
3512                "type": {
3513                  "kind": "NON_NULL",
3514                  "name": null,
3515                  "ofType": {
3516                    "kind": "ENUM",
3517                    "name": "EASServiceMetric",
3518                    "ofType": null
3519                  }
3520                },
3521                "defaultValue": null,
3522                "isDeprecated": false,
3523                "deprecationReason": null
3524              },
3525              {
3526                "name": "timespan",
3527                "description": null,
3528                "type": {
3529                  "kind": "NON_NULL",
3530                  "name": null,
3531                  "ofType": {
3532                    "kind": "INPUT_OBJECT",
3533                    "name": "UsageMetricsTimespan",
3534                    "ofType": null
3535                  }
3536                },
3537                "defaultValue": null,
3538                "isDeprecated": false,
3539                "deprecationReason": null
3540              }
3541            ],
3542            "type": {
3543              "kind": "NON_NULL",
3544              "name": null,
3545              "ofType": {
3546                "kind": "LIST",
3547                "name": null,
3548                "ofType": {
3549                  "kind": "NON_NULL",
3550                  "name": null,
3551                  "ofType": {
3552                    "kind": "OBJECT",
3553                    "name": "AccountUsageMetric",
3554                    "ofType": null
3555                  }
3556                }
3557              }
3558            },
3559            "isDeprecated": false,
3560            "deprecationReason": null
3561          }
3562        ],
3563        "inputFields": null,
3564        "interfaces": [],
3565        "enumValues": null,
3566        "possibleTypes": null
3567      },
3568      {
3569        "kind": "INTERFACE",
3570        "name": "ActivityTimelineProjectActivity",
3571        "description": null,
3572        "fields": [
3573          {
3574            "name": "activityTimestamp",
3575            "description": null,
3576            "args": [],
3577            "type": {
3578              "kind": "NON_NULL",
3579              "name": null,
3580              "ofType": {
3581                "kind": "SCALAR",
3582                "name": "DateTime",
3583                "ofType": null
3584              }
3585            },
3586            "isDeprecated": false,
3587            "deprecationReason": null
3588          },
3589          {
3590            "name": "actor",
3591            "description": null,
3592            "args": [],
3593            "type": {
3594              "kind": "INTERFACE",
3595              "name": "Actor",
3596              "ofType": null
3597            },
3598            "isDeprecated": false,
3599            "deprecationReason": null
3600          },
3601          {
3602            "name": "id",
3603            "description": null,
3604            "args": [],
3605            "type": {
3606              "kind": "NON_NULL",
3607              "name": null,
3608              "ofType": {
3609                "kind": "SCALAR",
3610                "name": "ID",
3611                "ofType": null
3612              }
3613            },
3614            "isDeprecated": false,
3615            "deprecationReason": null
3616          }
3617        ],
3618        "inputFields": null,
3619        "interfaces": [],
3620        "enumValues": null,
3621        "possibleTypes": [
3622          {
3623            "kind": "OBJECT",
3624            "name": "Build",
3625            "ofType": null
3626          },
3627          {
3628            "kind": "OBJECT",
3629            "name": "BuildJob",
3630            "ofType": null
3631          },
3632          {
3633            "kind": "OBJECT",
3634            "name": "Submission",
3635            "ofType": null
3636          },
3637          {
3638            "kind": "OBJECT",
3639            "name": "Update",
3640            "ofType": null
3641          }
3642        ]
3643      },
3644      {
3645        "kind": "ENUM",
3646        "name": "ActivityTimelineProjectActivityType",
3647        "description": null,
3648        "fields": null,
3649        "inputFields": null,
3650        "interfaces": null,
3651        "enumValues": [
3652          {
3653            "name": "BUILD",
3654            "description": null,
3655            "isDeprecated": false,
3656            "deprecationReason": null
3657          },
3658          {
3659            "name": "BUILD_JOB",
3660            "description": null,
3661            "isDeprecated": false,
3662            "deprecationReason": null
3663          },
3664          {
3665            "name": "SUBMISSION",
3666            "description": null,
3667            "isDeprecated": false,
3668            "deprecationReason": null
3669          },
3670          {
3671            "name": "UPDATE",
3672            "description": null,
3673            "isDeprecated": false,
3674            "deprecationReason": null
3675          }
3676        ],
3677        "possibleTypes": null
3678      },
3679      {
3680        "kind": "INTERFACE",
3681        "name": "Actor",
3682        "description": "A regular user, SSO user, or robot that can authenticate with Expo services and be a member of accounts.",
3683        "fields": [
3684          {
3685            "name": "accessTokens",
3686            "description": "Access Tokens belonging to this actor",
3687            "args": [],
3688            "type": {
3689              "kind": "NON_NULL",
3690              "name": null,
3691              "ofType": {
3692                "kind": "LIST",
3693                "name": null,
3694                "ofType": {
3695                  "kind": "NON_NULL",
3696                  "name": null,
3697                  "ofType": {
3698                    "kind": "OBJECT",
3699                    "name": "AccessToken",
3700                    "ofType": null
3701                  }
3702                }
3703              }
3704            },
3705            "isDeprecated": false,
3706            "deprecationReason": null
3707          },
3708          {
3709            "name": "accounts",
3710            "description": "Associated accounts",
3711            "args": [],
3712            "type": {
3713              "kind": "NON_NULL",
3714              "name": null,
3715              "ofType": {
3716                "kind": "LIST",
3717                "name": null,
3718                "ofType": {
3719                  "kind": "NON_NULL",
3720                  "name": null,
3721                  "ofType": {
3722                    "kind": "OBJECT",
3723                    "name": "Account",
3724                    "ofType": null
3725                  }
3726                }
3727              }
3728            },
3729            "isDeprecated": false,
3730            "deprecationReason": null
3731          },
3732          {
3733            "name": "created",
3734            "description": null,
3735            "args": [],
3736            "type": {
3737              "kind": "NON_NULL",
3738              "name": null,
3739              "ofType": {
3740                "kind": "SCALAR",
3741                "name": "DateTime",
3742                "ofType": null
3743              }
3744            },
3745            "isDeprecated": false,
3746            "deprecationReason": null
3747          },
3748          {
3749            "name": "displayName",
3750            "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.",
3751            "args": [],
3752            "type": {
3753              "kind": "NON_NULL",
3754              "name": null,
3755              "ofType": {
3756                "kind": "SCALAR",
3757                "name": "String",
3758                "ofType": null
3759              }
3760            },
3761            "isDeprecated": false,
3762            "deprecationReason": null
3763          },
3764          {
3765            "name": "featureGates",
3766            "description": "Server feature gate values for this actor, optionally filtering by desired gates.\nOnly resolves for the viewer.",
3767            "args": [
3768              {
3769                "name": "filter",
3770                "description": null,
3771                "type": {
3772                  "kind": "LIST",
3773                  "name": null,
3774                  "ofType": {
3775                    "kind": "NON_NULL",
3776                    "name": null,
3777                    "ofType": {
3778                      "kind": "SCALAR",
3779                      "name": "String",
3780                      "ofType": null
3781                    }
3782                  }
3783                },
3784                "defaultValue": null,
3785                "isDeprecated": false,
3786                "deprecationReason": null
3787              }
3788            ],
3789            "type": {
3790              "kind": "NON_NULL",
3791              "name": null,
3792              "ofType": {
3793                "kind": "SCALAR",
3794                "name": "JSONObject",
3795                "ofType": null
3796              }
3797            },
3798            "isDeprecated": false,
3799            "deprecationReason": null
3800          },
3801          {
3802            "name": "firstName",
3803            "description": null,
3804            "args": [],
3805            "type": {
3806              "kind": "SCALAR",
3807              "name": "String",
3808              "ofType": null
3809            },
3810            "isDeprecated": false,
3811            "deprecationReason": null
3812          },
3813          {
3814            "name": "id",
3815            "description": null,
3816            "args": [],
3817            "type": {
3818              "kind": "NON_NULL",
3819              "name": null,
3820              "ofType": {
3821                "kind": "SCALAR",
3822                "name": "ID",
3823                "ofType": null
3824              }
3825            },
3826            "isDeprecated": false,
3827            "deprecationReason": null
3828          },
3829          {
3830            "name": "isExpoAdmin",
3831            "description": null,
3832            "args": [],
3833            "type": {
3834              "kind": "NON_NULL",
3835              "name": null,
3836              "ofType": {
3837                "kind": "SCALAR",
3838                "name": "Boolean",
3839                "ofType": null
3840              }
3841            },
3842            "isDeprecated": false,
3843            "deprecationReason": null
3844          }
3845        ],
3846        "inputFields": null,
3847        "interfaces": [],
3848        "enumValues": null,
3849        "possibleTypes": [
3850          {
3851            "kind": "OBJECT",
3852            "name": "Robot",
3853            "ofType": null
3854          },
3855          {
3856            "kind": "OBJECT",
3857            "name": "SSOUser",
3858            "ofType": null
3859          },
3860          {
3861            "kind": "OBJECT",
3862            "name": "User",
3863            "ofType": null
3864          }
3865        ]
3866      },
3867      {
3868        "kind": "OBJECT",
3869        "name": "ActorQuery",
3870        "description": null,
3871        "fields": [
3872          {
3873            "name": "byId",
3874            "description": "Query an Actor by ID",
3875            "args": [
3876              {
3877                "name": "id",
3878                "description": null,
3879                "type": {
3880                  "kind": "NON_NULL",
3881                  "name": null,
3882                  "ofType": {
3883                    "kind": "SCALAR",
3884                    "name": "ID",
3885                    "ofType": null
3886                  }
3887                },
3888                "defaultValue": null,
3889                "isDeprecated": false,
3890                "deprecationReason": null
3891              }
3892            ],
3893            "type": {
3894              "kind": "NON_NULL",
3895              "name": null,
3896              "ofType": {
3897                "kind": "INTERFACE",
3898                "name": "Actor",
3899                "ofType": null
3900              }
3901            },
3902            "isDeprecated": false,
3903            "deprecationReason": null
3904          }
3905        ],
3906        "inputFields": null,
3907        "interfaces": [],
3908        "enumValues": null,
3909        "possibleTypes": null
3910      },
3911      {
3912        "kind": "INPUT_OBJECT",
3913        "name": "AddUserInput",
3914        "description": null,
3915        "fields": null,
3916        "inputFields": [
3917          {
3918            "name": "audience",
3919            "description": null,
3920            "type": {
3921              "kind": "ENUM",
3922              "name": "MailchimpAudience",
3923              "ofType": null
3924            },
3925            "defaultValue": "EXPO_DEVELOPERS",
3926            "isDeprecated": false,
3927            "deprecationReason": null
3928          },
3929          {
3930            "name": "email",
3931            "description": null,
3932            "type": {
3933              "kind": "NON_NULL",
3934              "name": null,
3935              "ofType": {
3936                "kind": "SCALAR",
3937                "name": "String",
3938                "ofType": null
3939              }
3940            },
3941            "defaultValue": null,
3942            "isDeprecated": false,
3943            "deprecationReason": null
3944          },
3945          {
3946            "name": "tags",
3947            "description": null,
3948            "type": {
3949              "kind": "LIST",
3950              "name": null,
3951              "ofType": {
3952                "kind": "NON_NULL",
3953                "name": null,
3954                "ofType": {
3955                  "kind": "ENUM",
3956                  "name": "MailchimpTag",
3957                  "ofType": null
3958                }
3959              }
3960            },
3961            "defaultValue": null,
3962            "isDeprecated": false,
3963            "deprecationReason": null
3964          }
3965        ],
3966        "interfaces": null,
3967        "enumValues": null,
3968        "possibleTypes": null
3969      },
3970      {
3971        "kind": "OBJECT",
3972        "name": "AddUserPayload",
3973        "description": null,
3974        "fields": [
3975          {
3976            "name": "email_address",
3977            "description": null,
3978            "args": [],
3979            "type": {
3980              "kind": "SCALAR",
3981              "name": "String",
3982              "ofType": null
3983            },
3984            "isDeprecated": false,
3985            "deprecationReason": null
3986          },
3987          {
3988            "name": "id",
3989            "description": null,
3990            "args": [],
3991            "type": {
3992              "kind": "SCALAR",
3993              "name": "String",
3994              "ofType": null
3995            },
3996            "isDeprecated": false,
3997            "deprecationReason": null
3998          },
3999          {
4000            "name": "list_id",
4001            "description": null,
4002            "args": [],
4003            "type": {
4004              "kind": "SCALAR",
4005              "name": "String",
4006              "ofType": null
4007            },
4008            "isDeprecated": false,
4009            "deprecationReason": null
4010          },
4011          {
4012            "name": "status",
4013            "description": null,
4014            "args": [],
4015            "type": {
4016              "kind": "SCALAR",
4017              "name": "String",
4018              "ofType": null
4019            },
4020            "isDeprecated": false,
4021            "deprecationReason": null
4022          },
4023          {
4024            "name": "tags",
4025            "description": null,
4026            "args": [],
4027            "type": {
4028              "kind": "LIST",
4029              "name": null,
4030              "ofType": {
4031                "kind": "NON_NULL",
4032                "name": null,
4033                "ofType": {
4034                  "kind": "OBJECT",
4035                  "name": "MailchimpTagPayload",
4036                  "ofType": null
4037                }
4038              }
4039            },
4040            "isDeprecated": false,
4041            "deprecationReason": null
4042          },
4043          {
4044            "name": "timestamp_signup",
4045            "description": null,
4046            "args": [],
4047            "type": {
4048              "kind": "SCALAR",
4049              "name": "String",
4050              "ofType": null
4051            },
4052            "isDeprecated": false,
4053            "deprecationReason": null
4054          }
4055        ],
4056        "inputFields": null,
4057        "interfaces": [],
4058        "enumValues": null,
4059        "possibleTypes": null
4060      },
4061      {
4062        "kind": "OBJECT",
4063        "name": "AddonDetails",
4064        "description": null,
4065        "fields": [
4066          {
4067            "name": "id",
4068            "description": null,
4069            "args": [],
4070            "type": {
4071              "kind": "NON_NULL",
4072              "name": null,
4073              "ofType": {
4074                "kind": "SCALAR",
4075                "name": "ID",
4076                "ofType": null
4077              }
4078            },
4079            "isDeprecated": false,
4080            "deprecationReason": null
4081          },
4082          {
4083            "name": "name",
4084            "description": null,
4085            "args": [],
4086            "type": {
4087              "kind": "NON_NULL",
4088              "name": null,
4089              "ofType": {
4090                "kind": "SCALAR",
4091                "name": "String",
4092                "ofType": null
4093              }
4094            },
4095            "isDeprecated": false,
4096            "deprecationReason": null
4097          },
4098          {
4099            "name": "nextInvoice",
4100            "description": null,
4101            "args": [],
4102            "type": {
4103              "kind": "SCALAR",
4104              "name": "DateTime",
4105              "ofType": null
4106            },
4107            "isDeprecated": false,
4108            "deprecationReason": null
4109          },
4110          {
4111            "name": "planId",
4112            "description": null,
4113            "args": [],
4114            "type": {
4115              "kind": "NON_NULL",
4116              "name": null,
4117              "ofType": {
4118                "kind": "SCALAR",
4119                "name": "String",
4120                "ofType": null
4121              }
4122            },
4123            "isDeprecated": false,
4124            "deprecationReason": null
4125          },
4126          {
4127            "name": "willCancel",
4128            "description": null,
4129            "args": [],
4130            "type": {
4131              "kind": "SCALAR",
4132              "name": "Boolean",
4133              "ofType": null
4134            },
4135            "isDeprecated": false,
4136            "deprecationReason": null
4137          }
4138        ],
4139        "inputFields": null,
4140        "interfaces": [],
4141        "enumValues": null,
4142        "possibleTypes": null
4143      },
4144      {
4145        "kind": "OBJECT",
4146        "name": "Address",
4147        "description": null,
4148        "fields": [
4149          {
4150            "name": "city",
4151            "description": null,
4152            "args": [],
4153            "type": {
4154              "kind": "SCALAR",
4155              "name": "String",
4156              "ofType": null
4157            },
4158            "isDeprecated": false,
4159            "deprecationReason": null
4160          },
4161          {
4162            "name": "country",
4163            "description": null,
4164            "args": [],
4165            "type": {
4166              "kind": "SCALAR",
4167              "name": "String",
4168              "ofType": null
4169            },
4170            "isDeprecated": false,
4171            "deprecationReason": null
4172          },
4173          {
4174            "name": "line1",
4175            "description": null,
4176            "args": [],
4177            "type": {
4178              "kind": "SCALAR",
4179              "name": "String",
4180              "ofType": null
4181            },
4182            "isDeprecated": false,
4183            "deprecationReason": null
4184          },
4185          {
4186            "name": "state",
4187            "description": null,
4188            "args": [],
4189            "type": {
4190              "kind": "SCALAR",
4191              "name": "String",
4192              "ofType": null
4193            },
4194            "isDeprecated": false,
4195            "deprecationReason": null
4196          },
4197          {
4198            "name": "zip",
4199            "description": null,
4200            "args": [],
4201            "type": {
4202              "kind": "SCALAR",
4203              "name": "String",
4204              "ofType": null
4205            },
4206            "isDeprecated": false,
4207            "deprecationReason": null
4208          }
4209        ],
4210        "inputFields": null,
4211        "interfaces": [],
4212        "enumValues": null,
4213        "possibleTypes": null
4214      },
4215      {
4216        "kind": "OBJECT",
4217        "name": "AndroidAppBuildCredentials",
4218        "description": null,
4219        "fields": [
4220          {
4221            "name": "androidKeystore",
4222            "description": null,
4223            "args": [],
4224            "type": {
4225              "kind": "OBJECT",
4226              "name": "AndroidKeystore",
4227              "ofType": null
4228            },
4229            "isDeprecated": false,
4230            "deprecationReason": null
4231          },
4232          {
4233            "name": "id",
4234            "description": null,
4235            "args": [],
4236            "type": {
4237              "kind": "NON_NULL",
4238              "name": null,
4239              "ofType": {
4240                "kind": "SCALAR",
4241                "name": "ID",
4242                "ofType": null
4243              }
4244            },
4245            "isDeprecated": false,
4246            "deprecationReason": null
4247          },
4248          {
4249            "name": "isDefault",
4250            "description": null,
4251            "args": [],
4252            "type": {
4253              "kind": "NON_NULL",
4254              "name": null,
4255              "ofType": {
4256                "kind": "SCALAR",
4257                "name": "Boolean",
4258                "ofType": null
4259              }
4260            },
4261            "isDeprecated": false,
4262            "deprecationReason": null
4263          },
4264          {
4265            "name": "isLegacy",
4266            "description": null,
4267            "args": [],
4268            "type": {
4269              "kind": "NON_NULL",
4270              "name": null,
4271              "ofType": {
4272                "kind": "SCALAR",
4273                "name": "Boolean",
4274                "ofType": null
4275              }
4276            },
4277            "isDeprecated": false,
4278            "deprecationReason": null
4279          },
4280          {
4281            "name": "name",
4282            "description": null,
4283            "args": [],
4284            "type": {
4285              "kind": "NON_NULL",
4286              "name": null,
4287              "ofType": {
4288                "kind": "SCALAR",
4289                "name": "String",
4290                "ofType": null
4291              }
4292            },
4293            "isDeprecated": false,
4294            "deprecationReason": null
4295          }
4296        ],
4297        "inputFields": null,
4298        "interfaces": [],
4299        "enumValues": null,
4300        "possibleTypes": null
4301      },
4302      {
4303        "kind": "INPUT_OBJECT",
4304        "name": "AndroidAppBuildCredentialsInput",
4305        "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.",
4306        "fields": null,
4307        "inputFields": [
4308          {
4309            "name": "isDefault",
4310            "description": null,
4311            "type": {
4312              "kind": "NON_NULL",
4313              "name": null,
4314              "ofType": {
4315                "kind": "SCALAR",
4316                "name": "Boolean",
4317                "ofType": null
4318              }
4319            },
4320            "defaultValue": null,
4321            "isDeprecated": false,
4322            "deprecationReason": null
4323          },
4324          {
4325            "name": "keystoreId",
4326            "description": null,
4327            "type": {
4328              "kind": "NON_NULL",
4329              "name": null,
4330              "ofType": {
4331                "kind": "SCALAR",
4332                "name": "ID",
4333                "ofType": null
4334              }
4335            },
4336            "defaultValue": null,
4337            "isDeprecated": false,
4338            "deprecationReason": null
4339          },
4340          {
4341            "name": "name",
4342            "description": null,
4343            "type": {
4344              "kind": "NON_NULL",
4345              "name": null,
4346              "ofType": {
4347                "kind": "SCALAR",
4348                "name": "String",
4349                "ofType": null
4350              }
4351            },
4352            "defaultValue": null,
4353            "isDeprecated": false,
4354            "deprecationReason": null
4355          }
4356        ],
4357        "interfaces": null,
4358        "enumValues": null,
4359        "possibleTypes": null
4360      },
4361      {
4362        "kind": "OBJECT",
4363        "name": "AndroidAppBuildCredentialsMutation",
4364        "description": null,
4365        "fields": [
4366          {
4367            "name": "createAndroidAppBuildCredentials",
4368            "description": "Create a set of build credentials for an Android app",
4369            "args": [
4370              {
4371                "name": "androidAppBuildCredentialsInput",
4372                "description": null,
4373                "type": {
4374                  "kind": "NON_NULL",
4375                  "name": null,
4376                  "ofType": {
4377                    "kind": "INPUT_OBJECT",
4378                    "name": "AndroidAppBuildCredentialsInput",
4379                    "ofType": null
4380                  }
4381                },
4382                "defaultValue": null,
4383                "isDeprecated": false,
4384                "deprecationReason": null
4385              },
4386              {
4387                "name": "androidAppCredentialsId",
4388                "description": null,
4389                "type": {
4390                  "kind": "NON_NULL",
4391                  "name": null,
4392                  "ofType": {
4393                    "kind": "SCALAR",
4394                    "name": "ID",
4395                    "ofType": null
4396                  }
4397                },
4398                "defaultValue": null,
4399                "isDeprecated": false,
4400                "deprecationReason": null
4401              }
4402            ],
4403            "type": {
4404              "kind": "NON_NULL",
4405              "name": null,
4406              "ofType": {
4407                "kind": "OBJECT",
4408                "name": "AndroidAppBuildCredentials",
4409                "ofType": null
4410              }
4411            },
4412            "isDeprecated": false,
4413            "deprecationReason": null
4414          },
4415          {
4416            "name": "deleteAndroidAppBuildCredentials",
4417            "description": "delete a set of build credentials for an Android app",
4418            "args": [
4419              {
4420                "name": "id",
4421                "description": null,
4422                "type": {
4423                  "kind": "NON_NULL",
4424                  "name": null,
4425                  "ofType": {
4426                    "kind": "SCALAR",
4427                    "name": "ID",
4428                    "ofType": null
4429                  }
4430                },
4431                "defaultValue": null,
4432                "isDeprecated": false,
4433                "deprecationReason": null
4434              }
4435            ],
4436            "type": {
4437              "kind": "NON_NULL",
4438              "name": null,
4439              "ofType": {
4440                "kind": "OBJECT",
4441                "name": "deleteAndroidAppBuildCredentialsResult",
4442                "ofType": null
4443              }
4444            },
4445            "isDeprecated": false,
4446            "deprecationReason": null
4447          },
4448          {
4449            "name": "setDefault",
4450            "description": "Set the build credentials to be the default for the Android app",
4451            "args": [
4452              {
4453                "name": "id",
4454                "description": null,
4455                "type": {
4456                  "kind": "NON_NULL",
4457                  "name": null,
4458                  "ofType": {
4459                    "kind": "SCALAR",
4460                    "name": "ID",
4461                    "ofType": null
4462                  }
4463                },
4464                "defaultValue": null,
4465                "isDeprecated": false,
4466                "deprecationReason": null
4467              },
4468              {
4469                "name": "isDefault",
4470                "description": null,
4471                "type": {
4472                  "kind": "NON_NULL",
4473                  "name": null,
4474                  "ofType": {
4475                    "kind": "SCALAR",
4476                    "name": "Boolean",
4477                    "ofType": null
4478                  }
4479                },
4480                "defaultValue": null,
4481                "isDeprecated": false,
4482                "deprecationReason": null
4483              }
4484            ],
4485            "type": {
4486              "kind": "NON_NULL",
4487              "name": null,
4488              "ofType": {
4489                "kind": "OBJECT",
4490                "name": "AndroidAppBuildCredentials",
4491                "ofType": null
4492              }
4493            },
4494            "isDeprecated": false,
4495            "deprecationReason": null
4496          },
4497          {
4498            "name": "setKeystore",
4499            "description": "Set the keystore to be used for an Android app",
4500            "args": [
4501              {
4502                "name": "id",
4503                "description": null,
4504                "type": {
4505                  "kind": "NON_NULL",
4506                  "name": null,
4507                  "ofType": {
4508                    "kind": "SCALAR",
4509                    "name": "ID",
4510                    "ofType": null
4511                  }
4512                },
4513                "defaultValue": null,
4514                "isDeprecated": false,
4515                "deprecationReason": null
4516              },
4517              {
4518                "name": "keystoreId",
4519                "description": null,
4520                "type": {
4521                  "kind": "NON_NULL",
4522                  "name": null,
4523                  "ofType": {
4524                    "kind": "SCALAR",
4525                    "name": "ID",
4526                    "ofType": null
4527                  }
4528                },
4529                "defaultValue": null,
4530                "isDeprecated": false,
4531                "deprecationReason": null
4532              }
4533            ],
4534            "type": {
4535              "kind": "NON_NULL",
4536              "name": null,
4537              "ofType": {
4538                "kind": "OBJECT",
4539                "name": "AndroidAppBuildCredentials",
4540                "ofType": null
4541              }
4542            },
4543            "isDeprecated": false,
4544            "deprecationReason": null
4545          },
4546          {
4547            "name": "setName",
4548            "description": "Set the name of a set of build credentials to be used for an Android app",
4549            "args": [
4550              {
4551                "name": "id",
4552                "description": null,
4553                "type": {
4554                  "kind": "NON_NULL",
4555                  "name": null,
4556                  "ofType": {
4557                    "kind": "SCALAR",
4558                    "name": "ID",
4559                    "ofType": null
4560                  }
4561                },
4562                "defaultValue": null,
4563                "isDeprecated": false,
4564                "deprecationReason": null
4565              },
4566              {
4567                "name": "name",
4568                "description": null,
4569                "type": {
4570                  "kind": "NON_NULL",
4571                  "name": null,
4572                  "ofType": {
4573                    "kind": "SCALAR",
4574                    "name": "String",
4575                    "ofType": null
4576                  }
4577                },
4578                "defaultValue": null,
4579                "isDeprecated": false,
4580                "deprecationReason": null
4581              }
4582            ],
4583            "type": {
4584              "kind": "NON_NULL",
4585              "name": null,
4586              "ofType": {
4587                "kind": "OBJECT",
4588                "name": "AndroidAppBuildCredentials",
4589                "ofType": null
4590              }
4591            },
4592            "isDeprecated": false,
4593            "deprecationReason": null
4594          }
4595        ],
4596        "inputFields": null,
4597        "interfaces": [],
4598        "enumValues": null,
4599        "possibleTypes": null
4600      },
4601      {
4602        "kind": "OBJECT",
4603        "name": "AndroidAppCredentials",
4604        "description": null,
4605        "fields": [
4606          {
4607            "name": "androidAppBuildCredentialsArray",
4608            "description": null,
4609            "args": [],
4610            "type": {
4611              "kind": "NON_NULL",
4612              "name": null,
4613              "ofType": {
4614                "kind": "LIST",
4615                "name": null,
4616                "ofType": {
4617                  "kind": "NON_NULL",
4618                  "name": null,
4619                  "ofType": {
4620                    "kind": "OBJECT",
4621                    "name": "AndroidAppBuildCredentials",
4622                    "ofType": null
4623                  }
4624                }
4625              }
4626            },
4627            "isDeprecated": true,
4628            "deprecationReason": "use androidAppBuildCredentialsList instead"
4629          },
4630          {
4631            "name": "androidAppBuildCredentialsList",
4632            "description": null,
4633            "args": [],
4634            "type": {
4635              "kind": "NON_NULL",
4636              "name": null,
4637              "ofType": {
4638                "kind": "LIST",
4639                "name": null,
4640                "ofType": {
4641                  "kind": "NON_NULL",
4642                  "name": null,
4643                  "ofType": {
4644                    "kind": "OBJECT",
4645                    "name": "AndroidAppBuildCredentials",
4646                    "ofType": null
4647                  }
4648                }
4649              }
4650            },
4651            "isDeprecated": false,
4652            "deprecationReason": null
4653          },
4654          {
4655            "name": "androidFcm",
4656            "description": null,
4657            "args": [],
4658            "type": {
4659              "kind": "OBJECT",
4660              "name": "AndroidFcm",
4661              "ofType": null
4662            },
4663            "isDeprecated": false,
4664            "deprecationReason": null
4665          },
4666          {
4667            "name": "app",
4668            "description": null,
4669            "args": [],
4670            "type": {
4671              "kind": "NON_NULL",
4672              "name": null,
4673              "ofType": {
4674                "kind": "OBJECT",
4675                "name": "App",
4676                "ofType": null
4677              }
4678            },
4679            "isDeprecated": false,
4680            "deprecationReason": null
4681          },
4682          {
4683            "name": "applicationIdentifier",
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": "googleServiceAccountKeyForSubmissions",
4696            "description": null,
4697            "args": [],
4698            "type": {
4699              "kind": "OBJECT",
4700              "name": "GoogleServiceAccountKey",
4701              "ofType": null
4702            },
4703            "isDeprecated": false,
4704            "deprecationReason": null
4705          },
4706          {
4707            "name": "id",
4708            "description": null,
4709            "args": [],
4710            "type": {
4711              "kind": "NON_NULL",
4712              "name": null,
4713              "ofType": {
4714                "kind": "SCALAR",
4715                "name": "ID",
4716                "ofType": null
4717              }
4718            },
4719            "isDeprecated": false,
4720            "deprecationReason": null
4721          },
4722          {
4723            "name": "isLegacy",
4724            "description": null,
4725            "args": [],
4726            "type": {
4727              "kind": "NON_NULL",
4728              "name": null,
4729              "ofType": {
4730                "kind": "SCALAR",
4731                "name": "Boolean",
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": "AndroidAppCredentialsFilter",
4747        "description": null,
4748        "fields": null,
4749        "inputFields": [
4750          {
4751            "name": "applicationIdentifier",
4752            "description": null,
4753            "type": {
4754              "kind": "SCALAR",
4755              "name": "String",
4756              "ofType": null
4757            },
4758            "defaultValue": null,
4759            "isDeprecated": false,
4760            "deprecationReason": null
4761          },
4762          {
4763            "name": "legacyOnly",
4764            "description": null,
4765            "type": {
4766              "kind": "SCALAR",
4767              "name": "Boolean",
4768              "ofType": null
4769            },
4770            "defaultValue": null,
4771            "isDeprecated": false,
4772            "deprecationReason": null
4773          }
4774        ],
4775        "interfaces": null,
4776        "enumValues": null,
4777        "possibleTypes": null
4778      },
4779      {
4780        "kind": "INPUT_OBJECT",
4781        "name": "AndroidAppCredentialsInput",
4782        "description": null,
4783        "fields": null,
4784        "inputFields": [
4785          {
4786            "name": "fcmId",
4787            "description": null,
4788            "type": {
4789              "kind": "SCALAR",
4790              "name": "ID",
4791              "ofType": null
4792            },
4793            "defaultValue": null,
4794            "isDeprecated": false,
4795            "deprecationReason": null
4796          },
4797          {
4798            "name": "googleServiceAccountKeyForSubmissionsId",
4799            "description": null,
4800            "type": {
4801              "kind": "SCALAR",
4802              "name": "ID",
4803              "ofType": null
4804            },
4805            "defaultValue": null,
4806            "isDeprecated": false,
4807            "deprecationReason": null
4808          }
4809        ],
4810        "interfaces": null,
4811        "enumValues": null,
4812        "possibleTypes": null
4813      },
4814      {
4815        "kind": "OBJECT",
4816        "name": "AndroidAppCredentialsMutation",
4817        "description": null,
4818        "fields": [
4819          {
4820            "name": "createAndroidAppCredentials",
4821            "description": "Create a set of credentials for an Android app",
4822            "args": [
4823              {
4824                "name": "androidAppCredentialsInput",
4825                "description": null,
4826                "type": {
4827                  "kind": "NON_NULL",
4828                  "name": null,
4829                  "ofType": {
4830                    "kind": "INPUT_OBJECT",
4831                    "name": "AndroidAppCredentialsInput",
4832                    "ofType": null
4833                  }
4834                },
4835                "defaultValue": null,
4836                "isDeprecated": false,
4837                "deprecationReason": null
4838              },
4839              {
4840                "name": "appId",
4841                "description": null,
4842                "type": {
4843                  "kind": "NON_NULL",
4844                  "name": null,
4845                  "ofType": {
4846                    "kind": "SCALAR",
4847                    "name": "ID",
4848                    "ofType": null
4849                  }
4850                },
4851                "defaultValue": null,
4852                "isDeprecated": false,
4853                "deprecationReason": null
4854              },
4855              {
4856                "name": "applicationIdentifier",
4857                "description": null,
4858                "type": {
4859                  "kind": "NON_NULL",
4860                  "name": null,
4861                  "ofType": {
4862                    "kind": "SCALAR",
4863                    "name": "String",
4864                    "ofType": null
4865                  }
4866                },
4867                "defaultValue": null,
4868                "isDeprecated": false,
4869                "deprecationReason": null
4870              }
4871            ],
4872            "type": {
4873              "kind": "NON_NULL",
4874              "name": null,
4875              "ofType": {
4876                "kind": "OBJECT",
4877                "name": "AndroidAppCredentials",
4878                "ofType": null
4879              }
4880            },
4881            "isDeprecated": false,
4882            "deprecationReason": null
4883          },
4884          {
4885            "name": "deleteAndroidAppCredentials",
4886            "description": "Delete a set of credentials for an Android app",
4887            "args": [
4888              {
4889                "name": "id",
4890                "description": null,
4891                "type": {
4892                  "kind": "NON_NULL",
4893                  "name": null,
4894                  "ofType": {
4895                    "kind": "SCALAR",
4896                    "name": "ID",
4897                    "ofType": null
4898                  }
4899                },
4900                "defaultValue": null,
4901                "isDeprecated": false,
4902                "deprecationReason": null
4903              }
4904            ],
4905            "type": {
4906              "kind": "NON_NULL",
4907              "name": null,
4908              "ofType": {
4909                "kind": "OBJECT",
4910                "name": "DeleteAndroidAppCredentialsResult",
4911                "ofType": null
4912              }
4913            },
4914            "isDeprecated": false,
4915            "deprecationReason": null
4916          },
4917          {
4918            "name": "setFcm",
4919            "description": "Set the FCM push key to be used in an Android app",
4920            "args": [
4921              {
4922                "name": "fcmId",
4923                "description": null,
4924                "type": {
4925                  "kind": "NON_NULL",
4926                  "name": null,
4927                  "ofType": {
4928                    "kind": "SCALAR",
4929                    "name": "ID",
4930                    "ofType": null
4931                  }
4932                },
4933                "defaultValue": null,
4934                "isDeprecated": false,
4935                "deprecationReason": null
4936              },
4937              {
4938                "name": "id",
4939                "description": null,
4940                "type": {
4941                  "kind": "NON_NULL",
4942                  "name": null,
4943                  "ofType": {
4944                    "kind": "SCALAR",
4945                    "name": "ID",
4946                    "ofType": null
4947                  }
4948                },
4949                "defaultValue": null,
4950                "isDeprecated": false,
4951                "deprecationReason": null
4952              }
4953            ],
4954            "type": {
4955              "kind": "NON_NULL",
4956              "name": null,
4957              "ofType": {
4958                "kind": "OBJECT",
4959                "name": "AndroidAppCredentials",
4960                "ofType": null
4961              }
4962            },
4963            "isDeprecated": false,
4964            "deprecationReason": null
4965          },
4966          {
4967            "name": "setGoogleServiceAccountKeyForSubmissions",
4968            "description": "Set the Google Service Account Key to be used for submitting an Android app",
4969            "args": [
4970              {
4971                "name": "googleServiceAccountKeyId",
4972                "description": null,
4973                "type": {
4974                  "kind": "NON_NULL",
4975                  "name": null,
4976                  "ofType": {
4977                    "kind": "SCALAR",
4978                    "name": "ID",
4979                    "ofType": null
4980                  }
4981                },
4982                "defaultValue": null,
4983                "isDeprecated": false,
4984                "deprecationReason": null
4985              },
4986              {
4987                "name": "id",
4988                "description": null,
4989                "type": {
4990                  "kind": "NON_NULL",
4991                  "name": null,
4992                  "ofType": {
4993                    "kind": "SCALAR",
4994                    "name": "ID",
4995                    "ofType": null
4996                  }
4997                },
4998                "defaultValue": null,
4999                "isDeprecated": false,
5000                "deprecationReason": null
5001              }
5002            ],
5003            "type": {
5004              "kind": "NON_NULL",
5005              "name": null,
5006              "ofType": {
5007                "kind": "OBJECT",
5008                "name": "AndroidAppCredentials",
5009                "ofType": null
5010              }
5011            },
5012            "isDeprecated": false,
5013            "deprecationReason": null
5014          }
5015        ],
5016        "inputFields": null,
5017        "interfaces": [],
5018        "enumValues": null,
5019        "possibleTypes": null
5020      },
5021      {
5022        "kind": "ENUM",
5023        "name": "AndroidBuildType",
5024        "description": null,
5025        "fields": null,
5026        "inputFields": null,
5027        "interfaces": null,
5028        "enumValues": [
5029          {
5030            "name": "APK",
5031            "description": null,
5032            "isDeprecated": false,
5033            "deprecationReason": null
5034          },
5035          {
5036            "name": "APP_BUNDLE",
5037            "description": null,
5038            "isDeprecated": false,
5039            "deprecationReason": null
5040          },
5041          {
5042            "name": "DEVELOPMENT_CLIENT",
5043            "description": "@deprecated Use developmentClient option instead.",
5044            "isDeprecated": false,
5045            "deprecationReason": null
5046          }
5047        ],
5048        "possibleTypes": null
5049      },
5050      {
5051        "kind": "INPUT_OBJECT",
5052        "name": "AndroidBuilderEnvironmentInput",
5053        "description": null,
5054        "fields": null,
5055        "inputFields": [
5056          {
5057            "name": "env",
5058            "description": null,
5059            "type": {
5060              "kind": "SCALAR",
5061              "name": "JSONObject",
5062              "ofType": null
5063            },
5064            "defaultValue": null,
5065            "isDeprecated": false,
5066            "deprecationReason": null
5067          },
5068          {
5069            "name": "expoCli",
5070            "description": null,
5071            "type": {
5072              "kind": "SCALAR",
5073              "name": "String",
5074              "ofType": null
5075            },
5076            "defaultValue": null,
5077            "isDeprecated": false,
5078            "deprecationReason": null
5079          },
5080          {
5081            "name": "image",
5082            "description": null,
5083            "type": {
5084              "kind": "SCALAR",
5085              "name": "String",
5086              "ofType": null
5087            },
5088            "defaultValue": null,
5089            "isDeprecated": false,
5090            "deprecationReason": null
5091          },
5092          {
5093            "name": "ndk",
5094            "description": null,
5095            "type": {
5096              "kind": "SCALAR",
5097              "name": "String",
5098              "ofType": null
5099            },
5100            "defaultValue": null,
5101            "isDeprecated": false,
5102            "deprecationReason": null
5103          },
5104          {
5105            "name": "node",
5106            "description": null,
5107            "type": {
5108              "kind": "SCALAR",
5109              "name": "String",
5110              "ofType": null
5111            },
5112            "defaultValue": null,
5113            "isDeprecated": false,
5114            "deprecationReason": null
5115          },
5116          {
5117            "name": "yarn",
5118            "description": null,
5119            "type": {
5120              "kind": "SCALAR",
5121              "name": "String",
5122              "ofType": null
5123            },
5124            "defaultValue": null,
5125            "isDeprecated": false,
5126            "deprecationReason": null
5127          }
5128        ],
5129        "interfaces": null,
5130        "enumValues": null,
5131        "possibleTypes": null
5132      },
5133      {
5134        "kind": "OBJECT",
5135        "name": "AndroidFcm",
5136        "description": null,
5137        "fields": [
5138          {
5139            "name": "account",
5140            "description": null,
5141            "args": [],
5142            "type": {
5143              "kind": "NON_NULL",
5144              "name": null,
5145              "ofType": {
5146                "kind": "OBJECT",
5147                "name": "Account",
5148                "ofType": null
5149              }
5150            },
5151            "isDeprecated": false,
5152            "deprecationReason": null
5153          },
5154          {
5155            "name": "createdAt",
5156            "description": null,
5157            "args": [],
5158            "type": {
5159              "kind": "NON_NULL",
5160              "name": null,
5161              "ofType": {
5162                "kind": "SCALAR",
5163                "name": "DateTime",
5164                "ofType": null
5165              }
5166            },
5167            "isDeprecated": false,
5168            "deprecationReason": null
5169          },
5170          {
5171            "name": "credential",
5172            "description": "Legacy FCM: returns the Cloud Messaging token, parses to a String\nFCM v1: returns the Service Account Key file, parses to an Object",
5173            "args": [],
5174            "type": {
5175              "kind": "NON_NULL",
5176              "name": null,
5177              "ofType": {
5178                "kind": "SCALAR",
5179                "name": "JSON",
5180                "ofType": null
5181              }
5182            },
5183            "isDeprecated": false,
5184            "deprecationReason": null
5185          },
5186          {
5187            "name": "id",
5188            "description": null,
5189            "args": [],
5190            "type": {
5191              "kind": "NON_NULL",
5192              "name": null,
5193              "ofType": {
5194                "kind": "SCALAR",
5195                "name": "ID",
5196                "ofType": null
5197              }
5198            },
5199            "isDeprecated": false,
5200            "deprecationReason": null
5201          },
5202          {
5203            "name": "snippet",
5204            "description": null,
5205            "args": [],
5206            "type": {
5207              "kind": "NON_NULL",
5208              "name": null,
5209              "ofType": {
5210                "kind": "UNION",
5211                "name": "FcmSnippet",
5212                "ofType": null
5213              }
5214            },
5215            "isDeprecated": false,
5216            "deprecationReason": null
5217          },
5218          {
5219            "name": "updatedAt",
5220            "description": null,
5221            "args": [],
5222            "type": {
5223              "kind": "NON_NULL",
5224              "name": null,
5225              "ofType": {
5226                "kind": "SCALAR",
5227                "name": "DateTime",
5228                "ofType": null
5229              }
5230            },
5231            "isDeprecated": false,
5232            "deprecationReason": null
5233          },
5234          {
5235            "name": "version",
5236            "description": null,
5237            "args": [],
5238            "type": {
5239              "kind": "NON_NULL",
5240              "name": null,
5241              "ofType": {
5242                "kind": "ENUM",
5243                "name": "AndroidFcmVersion",
5244                "ofType": null
5245              }
5246            },
5247            "isDeprecated": false,
5248            "deprecationReason": null
5249          }
5250        ],
5251        "inputFields": null,
5252        "interfaces": [],
5253        "enumValues": null,
5254        "possibleTypes": null
5255      },
5256      {
5257        "kind": "INPUT_OBJECT",
5258        "name": "AndroidFcmInput",
5259        "description": null,
5260        "fields": null,
5261        "inputFields": [
5262          {
5263            "name": "credential",
5264            "description": null,
5265            "type": {
5266              "kind": "NON_NULL",
5267              "name": null,
5268              "ofType": {
5269                "kind": "SCALAR",
5270                "name": "String",
5271                "ofType": null
5272              }
5273            },
5274            "defaultValue": null,
5275            "isDeprecated": false,
5276            "deprecationReason": null
5277          },
5278          {
5279            "name": "version",
5280            "description": null,
5281            "type": {
5282              "kind": "NON_NULL",
5283              "name": null,
5284              "ofType": {
5285                "kind": "ENUM",
5286                "name": "AndroidFcmVersion",
5287                "ofType": null
5288              }
5289            },
5290            "defaultValue": null,
5291            "isDeprecated": false,
5292            "deprecationReason": null
5293          }
5294        ],
5295        "interfaces": null,
5296        "enumValues": null,
5297        "possibleTypes": null
5298      },
5299      {
5300        "kind": "OBJECT",
5301        "name": "AndroidFcmMutation",
5302        "description": null,
5303        "fields": [
5304          {
5305            "name": "createAndroidFcm",
5306            "description": "Create an FCM credential",
5307            "args": [
5308              {
5309                "name": "accountId",
5310                "description": null,
5311                "type": {
5312                  "kind": "NON_NULL",
5313                  "name": null,
5314                  "ofType": {
5315                    "kind": "SCALAR",
5316                    "name": "ID",
5317                    "ofType": null
5318                  }
5319                },
5320                "defaultValue": null,
5321                "isDeprecated": false,
5322                "deprecationReason": null
5323              },
5324              {
5325                "name": "androidFcmInput",
5326                "description": null,
5327                "type": {
5328                  "kind": "NON_NULL",
5329                  "name": null,
5330                  "ofType": {
5331                    "kind": "INPUT_OBJECT",
5332                    "name": "AndroidFcmInput",
5333                    "ofType": null
5334                  }
5335                },
5336                "defaultValue": null,
5337                "isDeprecated": false,
5338                "deprecationReason": null
5339              }
5340            ],
5341            "type": {
5342              "kind": "NON_NULL",
5343              "name": null,
5344              "ofType": {
5345                "kind": "OBJECT",
5346                "name": "AndroidFcm",
5347                "ofType": null
5348              }
5349            },
5350            "isDeprecated": false,
5351            "deprecationReason": null
5352          },
5353          {
5354            "name": "deleteAndroidFcm",
5355            "description": "Delete an FCM credential",
5356            "args": [
5357              {
5358                "name": "id",
5359                "description": null,
5360                "type": {
5361                  "kind": "NON_NULL",
5362                  "name": null,
5363                  "ofType": {
5364                    "kind": "SCALAR",
5365                    "name": "ID",
5366                    "ofType": null
5367                  }
5368                },
5369                "defaultValue": null,
5370                "isDeprecated": false,
5371                "deprecationReason": null
5372              }
5373            ],
5374            "type": {
5375              "kind": "NON_NULL",
5376              "name": null,
5377              "ofType": {
5378                "kind": "OBJECT",
5379                "name": "deleteAndroidFcmResult",
5380                "ofType": null
5381              }
5382            },
5383            "isDeprecated": false,
5384            "deprecationReason": null
5385          }
5386        ],
5387        "inputFields": null,
5388        "interfaces": [],
5389        "enumValues": null,
5390        "possibleTypes": null
5391      },
5392      {
5393        "kind": "ENUM",
5394        "name": "AndroidFcmVersion",
5395        "description": null,
5396        "fields": null,
5397        "inputFields": null,
5398        "interfaces": null,
5399        "enumValues": [
5400          {
5401            "name": "LEGACY",
5402            "description": null,
5403            "isDeprecated": false,
5404            "deprecationReason": null
5405          },
5406          {
5407            "name": "V1",
5408            "description": null,
5409            "isDeprecated": false,
5410            "deprecationReason": null
5411          }
5412        ],
5413        "possibleTypes": null
5414      },
5415      {
5416        "kind": "INPUT_OBJECT",
5417        "name": "AndroidJobBuildCredentialsInput",
5418        "description": null,
5419        "fields": null,
5420        "inputFields": [
5421          {
5422            "name": "keystore",
5423            "description": null,
5424            "type": {
5425              "kind": "NON_NULL",
5426              "name": null,
5427              "ofType": {
5428                "kind": "INPUT_OBJECT",
5429                "name": "AndroidJobKeystoreInput",
5430                "ofType": null
5431              }
5432            },
5433            "defaultValue": null,
5434            "isDeprecated": false,
5435            "deprecationReason": null
5436          }
5437        ],
5438        "interfaces": null,
5439        "enumValues": null,
5440        "possibleTypes": null
5441      },
5442      {
5443        "kind": "INPUT_OBJECT",
5444        "name": "AndroidJobInput",
5445        "description": null,
5446        "fields": null,
5447        "inputFields": [
5448          {
5449            "name": "applicationArchivePath",
5450            "description": null,
5451            "type": {
5452              "kind": "SCALAR",
5453              "name": "String",
5454              "ofType": null
5455            },
5456            "defaultValue": null,
5457            "isDeprecated": false,
5458            "deprecationReason": null
5459          },
5460          {
5461            "name": "artifactPath",
5462            "description": "@deprecated",
5463            "type": {
5464              "kind": "SCALAR",
5465              "name": "String",
5466              "ofType": null
5467            },
5468            "defaultValue": null,
5469            "isDeprecated": false,
5470            "deprecationReason": null
5471          },
5472          {
5473            "name": "buildArtifactPaths",
5474            "description": null,
5475            "type": {
5476              "kind": "LIST",
5477              "name": null,
5478              "ofType": {
5479                "kind": "NON_NULL",
5480                "name": null,
5481                "ofType": {
5482                  "kind": "SCALAR",
5483                  "name": "String",
5484                  "ofType": null
5485                }
5486              }
5487            },
5488            "defaultValue": null,
5489            "isDeprecated": false,
5490            "deprecationReason": null
5491          },
5492          {
5493            "name": "buildProfile",
5494            "description": null,
5495            "type": {
5496              "kind": "SCALAR",
5497              "name": "String",
5498              "ofType": null
5499            },
5500            "defaultValue": null,
5501            "isDeprecated": false,
5502            "deprecationReason": null
5503          },
5504          {
5505            "name": "buildType",
5506            "description": null,
5507            "type": {
5508              "kind": "ENUM",
5509              "name": "AndroidBuildType",
5510              "ofType": null
5511            },
5512            "defaultValue": null,
5513            "isDeprecated": false,
5514            "deprecationReason": null
5515          },
5516          {
5517            "name": "builderEnvironment",
5518            "description": null,
5519            "type": {
5520              "kind": "INPUT_OBJECT",
5521              "name": "AndroidBuilderEnvironmentInput",
5522              "ofType": null
5523            },
5524            "defaultValue": null,
5525            "isDeprecated": false,
5526            "deprecationReason": null
5527          },
5528          {
5529            "name": "cache",
5530            "description": null,
5531            "type": {
5532              "kind": "INPUT_OBJECT",
5533              "name": "BuildCacheInput",
5534              "ofType": null
5535            },
5536            "defaultValue": null,
5537            "isDeprecated": false,
5538            "deprecationReason": null
5539          },
5540          {
5541            "name": "customBuildConfig",
5542            "description": null,
5543            "type": {
5544              "kind": "INPUT_OBJECT",
5545              "name": "CustomBuildConfigInput",
5546              "ofType": null
5547            },
5548            "defaultValue": null,
5549            "isDeprecated": false,
5550            "deprecationReason": null
5551          },
5552          {
5553            "name": "developmentClient",
5554            "description": null,
5555            "type": {
5556              "kind": "SCALAR",
5557              "name": "Boolean",
5558              "ofType": null
5559            },
5560            "defaultValue": null,
5561            "isDeprecated": false,
5562            "deprecationReason": null
5563          },
5564          {
5565            "name": "experimental",
5566            "description": null,
5567            "type": {
5568              "kind": "SCALAR",
5569              "name": "JSONObject",
5570              "ofType": null
5571            },
5572            "defaultValue": null,
5573            "isDeprecated": false,
5574            "deprecationReason": null
5575          },
5576          {
5577            "name": "gradleCommand",
5578            "description": null,
5579            "type": {
5580              "kind": "SCALAR",
5581              "name": "String",
5582              "ofType": null
5583            },
5584            "defaultValue": null,
5585            "isDeprecated": false,
5586            "deprecationReason": null
5587          },
5588          {
5589            "name": "mode",
5590            "description": null,
5591            "type": {
5592              "kind": "ENUM",
5593              "name": "BuildMode",
5594              "ofType": null
5595            },
5596            "defaultValue": null,
5597            "isDeprecated": false,
5598            "deprecationReason": null
5599          },
5600          {
5601            "name": "projectArchive",
5602            "description": null,
5603            "type": {
5604              "kind": "NON_NULL",
5605              "name": null,
5606              "ofType": {
5607                "kind": "INPUT_OBJECT",
5608                "name": "ProjectArchiveSourceInput",
5609                "ofType": null
5610              }
5611            },
5612            "defaultValue": null,
5613            "isDeprecated": false,
5614            "deprecationReason": null
5615          },
5616          {
5617            "name": "projectRootDirectory",
5618            "description": null,
5619            "type": {
5620              "kind": "NON_NULL",
5621              "name": null,
5622              "ofType": {
5623                "kind": "SCALAR",
5624                "name": "String",
5625                "ofType": null
5626              }
5627            },
5628            "defaultValue": null,
5629            "isDeprecated": false,
5630            "deprecationReason": null
5631          },
5632          {
5633            "name": "releaseChannel",
5634            "description": null,
5635            "type": {
5636              "kind": "SCALAR",
5637              "name": "String",
5638              "ofType": null
5639            },
5640            "defaultValue": null,
5641            "isDeprecated": false,
5642            "deprecationReason": null
5643          },
5644          {
5645            "name": "secrets",
5646            "description": null,
5647            "type": {
5648              "kind": "INPUT_OBJECT",
5649              "name": "AndroidJobSecretsInput",
5650              "ofType": null
5651            },
5652            "defaultValue": null,
5653            "isDeprecated": false,
5654            "deprecationReason": null
5655          },
5656          {
5657            "name": "triggeredBy",
5658            "description": null,
5659            "type": {
5660              "kind": "ENUM",
5661              "name": "BuildTrigger",
5662              "ofType": null
5663            },
5664            "defaultValue": null,
5665            "isDeprecated": false,
5666            "deprecationReason": null
5667          },
5668          {
5669            "name": "type",
5670            "description": null,
5671            "type": {
5672              "kind": "NON_NULL",
5673              "name": null,
5674              "ofType": {
5675                "kind": "ENUM",
5676                "name": "BuildWorkflow",
5677                "ofType": null
5678              }
5679            },
5680            "defaultValue": null,
5681            "isDeprecated": false,
5682            "deprecationReason": null
5683          },
5684          {
5685            "name": "updates",
5686            "description": null,
5687            "type": {
5688              "kind": "INPUT_OBJECT",
5689              "name": "BuildUpdatesInput",
5690              "ofType": null
5691            },
5692            "defaultValue": null,
5693            "isDeprecated": false,
5694            "deprecationReason": null
5695          },
5696          {
5697            "name": "username",
5698            "description": null,
5699            "type": {
5700              "kind": "SCALAR",
5701              "name": "String",
5702              "ofType": null
5703            },
5704            "defaultValue": null,
5705            "isDeprecated": false,
5706            "deprecationReason": null
5707          },
5708          {
5709            "name": "version",
5710            "description": null,
5711            "type": {
5712              "kind": "INPUT_OBJECT",
5713              "name": "AndroidJobVersionInput",
5714              "ofType": null
5715            },
5716            "defaultValue": null,
5717            "isDeprecated": false,
5718            "deprecationReason": null
5719          }
5720        ],
5721        "interfaces": null,
5722        "enumValues": null,
5723        "possibleTypes": null
5724      },
5725      {
5726        "kind": "INPUT_OBJECT",
5727        "name": "AndroidJobKeystoreInput",
5728        "description": null,
5729        "fields": null,
5730        "inputFields": [
5731          {
5732            "name": "dataBase64",
5733            "description": null,
5734            "type": {
5735              "kind": "NON_NULL",
5736              "name": null,
5737              "ofType": {
5738                "kind": "SCALAR",
5739                "name": "String",
5740                "ofType": null
5741              }
5742            },
5743            "defaultValue": null,
5744            "isDeprecated": false,
5745            "deprecationReason": null
5746          },
5747          {
5748            "name": "keyAlias",
5749            "description": null,
5750            "type": {
5751              "kind": "NON_NULL",
5752              "name": null,
5753              "ofType": {
5754                "kind": "SCALAR",
5755                "name": "String",
5756                "ofType": null
5757              }
5758            },
5759            "defaultValue": null,
5760            "isDeprecated": false,
5761            "deprecationReason": null
5762          },
5763          {
5764            "name": "keyPassword",
5765            "description": null,
5766            "type": {
5767              "kind": "SCALAR",
5768              "name": "String",
5769              "ofType": null
5770            },
5771            "defaultValue": null,
5772            "isDeprecated": false,
5773            "deprecationReason": null
5774          },
5775          {
5776            "name": "keystorePassword",
5777            "description": null,
5778            "type": {
5779              "kind": "NON_NULL",
5780              "name": null,
5781              "ofType": {
5782                "kind": "SCALAR",
5783                "name": "String",
5784                "ofType": null
5785              }
5786            },
5787            "defaultValue": null,
5788            "isDeprecated": false,
5789            "deprecationReason": null
5790          }
5791        ],
5792        "interfaces": null,
5793        "enumValues": null,
5794        "possibleTypes": null
5795      },
5796      {
5797        "kind": "INPUT_OBJECT",
5798        "name": "AndroidJobOverridesInput",
5799        "description": null,
5800        "fields": null,
5801        "inputFields": [
5802          {
5803            "name": "applicationArchivePath",
5804            "description": null,
5805            "type": {
5806              "kind": "SCALAR",
5807              "name": "String",
5808              "ofType": null
5809            },
5810            "defaultValue": null,
5811            "isDeprecated": false,
5812            "deprecationReason": null
5813          },
5814          {
5815            "name": "artifactPath",
5816            "description": "@deprecated",
5817            "type": {
5818              "kind": "SCALAR",
5819              "name": "String",
5820              "ofType": null
5821            },
5822            "defaultValue": null,
5823            "isDeprecated": false,
5824            "deprecationReason": null
5825          },
5826          {
5827            "name": "buildArtifactPaths",
5828            "description": null,
5829            "type": {
5830              "kind": "LIST",
5831              "name": null,
5832              "ofType": {
5833                "kind": "NON_NULL",
5834                "name": null,
5835                "ofType": {
5836                  "kind": "SCALAR",
5837                  "name": "String",
5838                  "ofType": null
5839                }
5840              }
5841            },
5842            "defaultValue": null,
5843            "isDeprecated": false,
5844            "deprecationReason": null
5845          },
5846          {
5847            "name": "buildProfile",
5848            "description": null,
5849            "type": {
5850              "kind": "SCALAR",
5851              "name": "String",
5852              "ofType": null
5853            },
5854            "defaultValue": null,
5855            "isDeprecated": false,
5856            "deprecationReason": null
5857          },
5858          {
5859            "name": "buildType",
5860            "description": null,
5861            "type": {
5862              "kind": "ENUM",
5863              "name": "AndroidBuildType",
5864              "ofType": null
5865            },
5866            "defaultValue": null,
5867            "isDeprecated": false,
5868            "deprecationReason": null
5869          },
5870          {
5871            "name": "builderEnvironment",
5872            "description": null,
5873            "type": {
5874              "kind": "INPUT_OBJECT",
5875              "name": "AndroidBuilderEnvironmentInput",
5876              "ofType": null
5877            },
5878            "defaultValue": null,
5879            "isDeprecated": false,
5880            "deprecationReason": null
5881          },
5882          {
5883            "name": "cache",
5884            "description": null,
5885            "type": {
5886              "kind": "INPUT_OBJECT",
5887              "name": "BuildCacheInput",
5888              "ofType": null
5889            },
5890            "defaultValue": null,
5891            "isDeprecated": false,
5892            "deprecationReason": null
5893          },
5894          {
5895            "name": "developmentClient",
5896            "description": null,
5897            "type": {
5898              "kind": "SCALAR",
5899              "name": "Boolean",
5900              "ofType": null
5901            },
5902            "defaultValue": null,
5903            "isDeprecated": false,
5904            "deprecationReason": null
5905          },
5906          {
5907            "name": "experimental",
5908            "description": null,
5909            "type": {
5910              "kind": "SCALAR",
5911              "name": "JSONObject",
5912              "ofType": null
5913            },
5914            "defaultValue": null,
5915            "isDeprecated": false,
5916            "deprecationReason": null
5917          },
5918          {
5919            "name": "gradleCommand",
5920            "description": null,
5921            "type": {
5922              "kind": "SCALAR",
5923              "name": "String",
5924              "ofType": null
5925            },
5926            "defaultValue": null,
5927            "isDeprecated": false,
5928            "deprecationReason": null
5929          },
5930          {
5931            "name": "mode",
5932            "description": null,
5933            "type": {
5934              "kind": "ENUM",
5935              "name": "BuildMode",
5936              "ofType": null
5937            },
5938            "defaultValue": null,
5939            "isDeprecated": false,
5940            "deprecationReason": null
5941          },
5942          {
5943            "name": "releaseChannel",
5944            "description": null,
5945            "type": {
5946              "kind": "SCALAR",
5947              "name": "String",
5948              "ofType": null
5949            },
5950            "defaultValue": null,
5951            "isDeprecated": false,
5952            "deprecationReason": null
5953          },
5954          {
5955            "name": "secrets",
5956            "description": null,
5957            "type": {
5958              "kind": "INPUT_OBJECT",
5959              "name": "AndroidJobSecretsInput",
5960              "ofType": null
5961            },
5962            "defaultValue": null,
5963            "isDeprecated": false,
5964            "deprecationReason": null
5965          },
5966          {
5967            "name": "updates",
5968            "description": null,
5969            "type": {
5970              "kind": "INPUT_OBJECT",
5971              "name": "BuildUpdatesInput",
5972              "ofType": null
5973            },
5974            "defaultValue": null,
5975            "isDeprecated": false,
5976            "deprecationReason": null
5977          },
5978          {
5979            "name": "username",
5980            "description": null,
5981            "type": {
5982              "kind": "SCALAR",
5983              "name": "String",
5984              "ofType": null
5985            },
5986            "defaultValue": null,
5987            "isDeprecated": false,
5988            "deprecationReason": null
5989          },
5990          {
5991            "name": "version",
5992            "description": null,
5993            "type": {
5994              "kind": "INPUT_OBJECT",
5995              "name": "AndroidJobVersionInput",
5996              "ofType": null
5997            },
5998            "defaultValue": null,
5999            "isDeprecated": false,
6000            "deprecationReason": null
6001          }
6002        ],
6003        "interfaces": null,
6004        "enumValues": null,
6005        "possibleTypes": null
6006      },
6007      {
6008        "kind": "INPUT_OBJECT",
6009        "name": "AndroidJobSecretsInput",
6010        "description": null,
6011        "fields": null,
6012        "inputFields": [
6013          {
6014            "name": "buildCredentials",
6015            "description": null,
6016            "type": {
6017              "kind": "INPUT_OBJECT",
6018              "name": "AndroidJobBuildCredentialsInput",
6019              "ofType": null
6020            },
6021            "defaultValue": null,
6022            "isDeprecated": false,
6023            "deprecationReason": null
6024          },
6025          {
6026            "name": "robotAccessToken",
6027            "description": null,
6028            "type": {
6029              "kind": "SCALAR",
6030              "name": "String",
6031              "ofType": null
6032            },
6033            "defaultValue": null,
6034            "isDeprecated": false,
6035            "deprecationReason": null
6036          }
6037        ],
6038        "interfaces": null,
6039        "enumValues": null,
6040        "possibleTypes": null
6041      },
6042      {
6043        "kind": "INPUT_OBJECT",
6044        "name": "AndroidJobVersionInput",
6045        "description": null,
6046        "fields": null,
6047        "inputFields": [
6048          {
6049            "name": "versionCode",
6050            "description": null,
6051            "type": {
6052              "kind": "NON_NULL",
6053              "name": null,
6054              "ofType": {
6055                "kind": "SCALAR",
6056                "name": "String",
6057                "ofType": null
6058              }
6059            },
6060            "defaultValue": null,
6061            "isDeprecated": false,
6062            "deprecationReason": null
6063          }
6064        ],
6065        "interfaces": null,
6066        "enumValues": null,
6067        "possibleTypes": null
6068      },
6069      {
6070        "kind": "OBJECT",
6071        "name": "AndroidKeystore",
6072        "description": null,
6073        "fields": [
6074          {
6075            "name": "account",
6076            "description": null,
6077            "args": [],
6078            "type": {
6079              "kind": "NON_NULL",
6080              "name": null,
6081              "ofType": {
6082                "kind": "OBJECT",
6083                "name": "Account",
6084                "ofType": null
6085              }
6086            },
6087            "isDeprecated": false,
6088            "deprecationReason": null
6089          },
6090          {
6091            "name": "createdAt",
6092            "description": null,
6093            "args": [],
6094            "type": {
6095              "kind": "NON_NULL",
6096              "name": null,
6097              "ofType": {
6098                "kind": "SCALAR",
6099                "name": "DateTime",
6100                "ofType": null
6101              }
6102            },
6103            "isDeprecated": false,
6104            "deprecationReason": null
6105          },
6106          {
6107            "name": "id",
6108            "description": null,
6109            "args": [],
6110            "type": {
6111              "kind": "NON_NULL",
6112              "name": null,
6113              "ofType": {
6114                "kind": "SCALAR",
6115                "name": "ID",
6116                "ofType": null
6117              }
6118            },
6119            "isDeprecated": false,
6120            "deprecationReason": null
6121          },
6122          {
6123            "name": "keyAlias",
6124            "description": null,
6125            "args": [],
6126            "type": {
6127              "kind": "NON_NULL",
6128              "name": null,
6129              "ofType": {
6130                "kind": "SCALAR",
6131                "name": "String",
6132                "ofType": null
6133              }
6134            },
6135            "isDeprecated": false,
6136            "deprecationReason": null
6137          },
6138          {
6139            "name": "keyPassword",
6140            "description": null,
6141            "args": [],
6142            "type": {
6143              "kind": "SCALAR",
6144              "name": "String",
6145              "ofType": null
6146            },
6147            "isDeprecated": false,
6148            "deprecationReason": null
6149          },
6150          {
6151            "name": "keystore",
6152            "description": null,
6153            "args": [],
6154            "type": {
6155              "kind": "NON_NULL",
6156              "name": null,
6157              "ofType": {
6158                "kind": "SCALAR",
6159                "name": "String",
6160                "ofType": null
6161              }
6162            },
6163            "isDeprecated": false,
6164            "deprecationReason": null
6165          },
6166          {
6167            "name": "keystorePassword",
6168            "description": null,
6169            "args": [],
6170            "type": {
6171              "kind": "NON_NULL",
6172              "name": null,
6173              "ofType": {
6174                "kind": "SCALAR",
6175                "name": "String",
6176                "ofType": null
6177              }
6178            },
6179            "isDeprecated": false,
6180            "deprecationReason": null
6181          },
6182          {
6183            "name": "md5CertificateFingerprint",
6184            "description": null,
6185            "args": [],
6186            "type": {
6187              "kind": "SCALAR",
6188              "name": "String",
6189              "ofType": null
6190            },
6191            "isDeprecated": false,
6192            "deprecationReason": null
6193          },
6194          {
6195            "name": "sha1CertificateFingerprint",
6196            "description": null,
6197            "args": [],
6198            "type": {
6199              "kind": "SCALAR",
6200              "name": "String",
6201              "ofType": null
6202            },
6203            "isDeprecated": false,
6204            "deprecationReason": null
6205          },
6206          {
6207            "name": "sha256CertificateFingerprint",
6208            "description": null,
6209            "args": [],
6210            "type": {
6211              "kind": "SCALAR",
6212              "name": "String",
6213              "ofType": null
6214            },
6215            "isDeprecated": false,
6216            "deprecationReason": null
6217          },
6218          {
6219            "name": "type",
6220            "description": null,
6221            "args": [],
6222            "type": {
6223              "kind": "NON_NULL",
6224              "name": null,
6225              "ofType": {
6226                "kind": "ENUM",
6227                "name": "AndroidKeystoreType",
6228                "ofType": null
6229              }
6230            },
6231            "isDeprecated": false,
6232            "deprecationReason": null
6233          },
6234          {
6235            "name": "updatedAt",
6236            "description": null,
6237            "args": [],
6238            "type": {
6239              "kind": "NON_NULL",
6240              "name": null,
6241              "ofType": {
6242                "kind": "SCALAR",
6243                "name": "DateTime",
6244                "ofType": null
6245              }
6246            },
6247            "isDeprecated": false,
6248            "deprecationReason": null
6249          }
6250        ],
6251        "inputFields": null,
6252        "interfaces": [],
6253        "enumValues": null,
6254        "possibleTypes": null
6255      },
6256      {
6257        "kind": "INPUT_OBJECT",
6258        "name": "AndroidKeystoreInput",
6259        "description": null,
6260        "fields": null,
6261        "inputFields": [
6262          {
6263            "name": "base64EncodedKeystore",
6264            "description": null,
6265            "type": {
6266              "kind": "NON_NULL",
6267              "name": null,
6268              "ofType": {
6269                "kind": "SCALAR",
6270                "name": "String",
6271                "ofType": null
6272              }
6273            },
6274            "defaultValue": null,
6275            "isDeprecated": false,
6276            "deprecationReason": null
6277          },
6278          {
6279            "name": "keyAlias",
6280            "description": null,
6281            "type": {
6282              "kind": "NON_NULL",
6283              "name": null,
6284              "ofType": {
6285                "kind": "SCALAR",
6286                "name": "String",
6287                "ofType": null
6288              }
6289            },
6290            "defaultValue": null,
6291            "isDeprecated": false,
6292            "deprecationReason": null
6293          },
6294          {
6295            "name": "keyPassword",
6296            "description": null,
6297            "type": {
6298              "kind": "SCALAR",
6299              "name": "String",
6300              "ofType": null
6301            },
6302            "defaultValue": null,
6303            "isDeprecated": false,
6304            "deprecationReason": null
6305          },
6306          {
6307            "name": "keystorePassword",
6308            "description": null,
6309            "type": {
6310              "kind": "NON_NULL",
6311              "name": null,
6312              "ofType": {
6313                "kind": "SCALAR",
6314                "name": "String",
6315                "ofType": null
6316              }
6317            },
6318            "defaultValue": null,
6319            "isDeprecated": false,
6320            "deprecationReason": null
6321          },
6322          {
6323            "name": "type",
6324            "description": null,
6325            "type": {
6326              "kind": "NON_NULL",
6327              "name": null,
6328              "ofType": {
6329                "kind": "ENUM",
6330                "name": "AndroidKeystoreType",
6331                "ofType": null
6332              }
6333            },
6334            "defaultValue": null,
6335            "isDeprecated": false,
6336            "deprecationReason": null
6337          }
6338        ],
6339        "interfaces": null,
6340        "enumValues": null,
6341        "possibleTypes": null
6342      },
6343      {
6344        "kind": "OBJECT",
6345        "name": "AndroidKeystoreMutation",
6346        "description": null,
6347        "fields": [
6348          {
6349            "name": "createAndroidKeystore",
6350            "description": "Create a Keystore",
6351            "args": [
6352              {
6353                "name": "accountId",
6354                "description": null,
6355                "type": {
6356                  "kind": "NON_NULL",
6357                  "name": null,
6358                  "ofType": {
6359                    "kind": "SCALAR",
6360                    "name": "ID",
6361                    "ofType": null
6362                  }
6363                },
6364                "defaultValue": null,
6365                "isDeprecated": false,
6366                "deprecationReason": null
6367              },
6368              {
6369                "name": "androidKeystoreInput",
6370                "description": null,
6371                "type": {
6372                  "kind": "NON_NULL",
6373                  "name": null,
6374                  "ofType": {
6375                    "kind": "INPUT_OBJECT",
6376                    "name": "AndroidKeystoreInput",
6377                    "ofType": null
6378                  }
6379                },
6380                "defaultValue": null,
6381                "isDeprecated": false,
6382                "deprecationReason": null
6383              }
6384            ],
6385            "type": {
6386              "kind": "OBJECT",
6387              "name": "AndroidKeystore",
6388              "ofType": null
6389            },
6390            "isDeprecated": false,
6391            "deprecationReason": null
6392          },
6393          {
6394            "name": "deleteAndroidKeystore",
6395            "description": "Delete a Keystore",
6396            "args": [
6397              {
6398                "name": "id",
6399                "description": null,
6400                "type": {
6401                  "kind": "NON_NULL",
6402                  "name": null,
6403                  "ofType": {
6404                    "kind": "SCALAR",
6405                    "name": "ID",
6406                    "ofType": null
6407                  }
6408                },
6409                "defaultValue": null,
6410                "isDeprecated": false,
6411                "deprecationReason": null
6412              }
6413            ],
6414            "type": {
6415              "kind": "NON_NULL",
6416              "name": null,
6417              "ofType": {
6418                "kind": "OBJECT",
6419                "name": "DeleteAndroidKeystoreResult",
6420                "ofType": null
6421              }
6422            },
6423            "isDeprecated": false,
6424            "deprecationReason": null
6425          }
6426        ],
6427        "inputFields": null,
6428        "interfaces": [],
6429        "enumValues": null,
6430        "possibleTypes": null
6431      },
6432      {
6433        "kind": "ENUM",
6434        "name": "AndroidKeystoreType",
6435        "description": null,
6436        "fields": null,
6437        "inputFields": null,
6438        "interfaces": null,
6439        "enumValues": [
6440          {
6441            "name": "JKS",
6442            "description": null,
6443            "isDeprecated": false,
6444            "deprecationReason": null
6445          },
6446          {
6447            "name": "PKCS12",
6448            "description": null,
6449            "isDeprecated": false,
6450            "deprecationReason": null
6451          },
6452          {
6453            "name": "UNKNOWN",
6454            "description": null,
6455            "isDeprecated": false,
6456            "deprecationReason": null
6457          }
6458        ],
6459        "possibleTypes": null
6460      },
6461      {
6462        "kind": "OBJECT",
6463        "name": "AndroidSubmissionConfig",
6464        "description": null,
6465        "fields": [
6466          {
6467            "name": "applicationIdentifier",
6468            "description": null,
6469            "args": [],
6470            "type": {
6471              "kind": "SCALAR",
6472              "name": "String",
6473              "ofType": null
6474            },
6475            "isDeprecated": true,
6476            "deprecationReason": "applicationIdentifier is deprecated and will be auto-detected on submit"
6477          },
6478          {
6479            "name": "archiveType",
6480            "description": null,
6481            "args": [],
6482            "type": {
6483              "kind": "ENUM",
6484              "name": "SubmissionAndroidArchiveType",
6485              "ofType": null
6486            },
6487            "isDeprecated": true,
6488            "deprecationReason": "archiveType is deprecated and will be null"
6489          },
6490          {
6491            "name": "releaseStatus",
6492            "description": null,
6493            "args": [],
6494            "type": {
6495              "kind": "ENUM",
6496              "name": "SubmissionAndroidReleaseStatus",
6497              "ofType": null
6498            },
6499            "isDeprecated": false,
6500            "deprecationReason": null
6501          },
6502          {
6503            "name": "track",
6504            "description": null,
6505            "args": [],
6506            "type": {
6507              "kind": "NON_NULL",
6508              "name": null,
6509              "ofType": {
6510                "kind": "ENUM",
6511                "name": "SubmissionAndroidTrack",
6512                "ofType": null
6513              }
6514            },
6515            "isDeprecated": false,
6516            "deprecationReason": null
6517          }
6518        ],
6519        "inputFields": null,
6520        "interfaces": [],
6521        "enumValues": null,
6522        "possibleTypes": null
6523      },
6524      {
6525        "kind": "INPUT_OBJECT",
6526        "name": "AndroidSubmissionConfigInput",
6527        "description": null,
6528        "fields": null,
6529        "inputFields": [
6530          {
6531            "name": "applicationIdentifier",
6532            "description": null,
6533            "type": {
6534              "kind": "SCALAR",
6535              "name": "String",
6536              "ofType": null
6537            },
6538            "defaultValue": null,
6539            "isDeprecated": false,
6540            "deprecationReason": null
6541          },
6542          {
6543            "name": "archiveUrl",
6544            "description": null,
6545            "type": {
6546              "kind": "SCALAR",
6547              "name": "String",
6548              "ofType": null
6549            },
6550            "defaultValue": null,
6551            "isDeprecated": false,
6552            "deprecationReason": null
6553          },
6554          {
6555            "name": "changesNotSentForReview",
6556            "description": null,
6557            "type": {
6558              "kind": "SCALAR",
6559              "name": "Boolean",
6560              "ofType": null
6561            },
6562            "defaultValue": null,
6563            "isDeprecated": false,
6564            "deprecationReason": null
6565          },
6566          {
6567            "name": "googleServiceAccountKeyId",
6568            "description": null,
6569            "type": {
6570              "kind": "SCALAR",
6571              "name": "String",
6572              "ofType": null
6573            },
6574            "defaultValue": null,
6575            "isDeprecated": false,
6576            "deprecationReason": null
6577          },
6578          {
6579            "name": "googleServiceAccountKeyJson",
6580            "description": null,
6581            "type": {
6582              "kind": "SCALAR",
6583              "name": "String",
6584              "ofType": null
6585            },
6586            "defaultValue": null,
6587            "isDeprecated": false,
6588            "deprecationReason": null
6589          },
6590          {
6591            "name": "releaseStatus",
6592            "description": null,
6593            "type": {
6594              "kind": "ENUM",
6595              "name": "SubmissionAndroidReleaseStatus",
6596              "ofType": null
6597            },
6598            "defaultValue": null,
6599            "isDeprecated": false,
6600            "deprecationReason": null
6601          },
6602          {
6603            "name": "track",
6604            "description": null,
6605            "type": {
6606              "kind": "NON_NULL",
6607              "name": null,
6608              "ofType": {
6609                "kind": "ENUM",
6610                "name": "SubmissionAndroidTrack",
6611                "ofType": null
6612              }
6613            },
6614            "defaultValue": null,
6615            "isDeprecated": false,
6616            "deprecationReason": null
6617          }
6618        ],
6619        "interfaces": null,
6620        "enumValues": null,
6621        "possibleTypes": null
6622      },
6623      {
6624        "kind": "OBJECT",
6625        "name": "App",
6626        "description": "Represents an Exponent App (or Experience in legacy terms)",
6627        "fields": [
6628          {
6629            "name": "accessTokens",
6630            "description": null,
6631            "args": [],
6632            "type": {
6633              "kind": "NON_NULL",
6634              "name": null,
6635              "ofType": {
6636                "kind": "LIST",
6637                "name": null,
6638                "ofType": {
6639                  "kind": "OBJECT",
6640                  "name": "AccessToken",
6641                  "ofType": null
6642                }
6643              }
6644            },
6645            "isDeprecated": true,
6646            "deprecationReason": "Legacy access tokens are deprecated"
6647          },
6648          {
6649            "name": "activityTimelineProjectActivities",
6650            "description": "Coalesced project activity for an app",
6651            "args": [
6652              {
6653                "name": "createdBefore",
6654                "description": " Offset the query ",
6655                "type": {
6656                  "kind": "SCALAR",
6657                  "name": "DateTime",
6658                  "ofType": null
6659                },
6660                "defaultValue": null,
6661                "isDeprecated": false,
6662                "deprecationReason": null
6663              },
6664              {
6665                "name": "filterChannels",
6666                "description": null,
6667                "type": {
6668                  "kind": "LIST",
6669                  "name": null,
6670                  "ofType": {
6671                    "kind": "NON_NULL",
6672                    "name": null,
6673                    "ofType": {
6674                      "kind": "SCALAR",
6675                      "name": "String",
6676                      "ofType": null
6677                    }
6678                  }
6679                },
6680                "defaultValue": null,
6681                "isDeprecated": false,
6682                "deprecationReason": null
6683              },
6684              {
6685                "name": "filterPlatforms",
6686                "description": null,
6687                "type": {
6688                  "kind": "LIST",
6689                  "name": null,
6690                  "ofType": {
6691                    "kind": "NON_NULL",
6692                    "name": null,
6693                    "ofType": {
6694                      "kind": "ENUM",
6695                      "name": "AppPlatform",
6696                      "ofType": null
6697                    }
6698                  }
6699                },
6700                "defaultValue": null,
6701                "isDeprecated": false,
6702                "deprecationReason": null
6703              },
6704              {
6705                "name": "filterReleaseChannels",
6706                "description": null,
6707                "type": {
6708                  "kind": "LIST",
6709                  "name": null,
6710                  "ofType": {
6711                    "kind": "NON_NULL",
6712                    "name": null,
6713                    "ofType": {
6714                      "kind": "SCALAR",
6715                      "name": "String",
6716                      "ofType": null
6717                    }
6718                  }
6719                },
6720                "defaultValue": null,
6721                "isDeprecated": false,
6722                "deprecationReason": null
6723              },
6724              {
6725                "name": "filterTypes",
6726                "description": " Types of objects to filter ",
6727                "type": {
6728                  "kind": "LIST",
6729                  "name": null,
6730                  "ofType": {
6731                    "kind": "NON_NULL",
6732                    "name": null,
6733                    "ofType": {
6734                      "kind": "ENUM",
6735                      "name": "ActivityTimelineProjectActivityType",
6736                      "ofType": null
6737                    }
6738                  }
6739                },
6740                "defaultValue": null,
6741                "isDeprecated": false,
6742                "deprecationReason": null
6743              },
6744              {
6745                "name": "limit",
6746                "description": null,
6747                "type": {
6748                  "kind": "NON_NULL",
6749                  "name": null,
6750                  "ofType": {
6751                    "kind": "SCALAR",
6752                    "name": "Int",
6753                    "ofType": null
6754                  }
6755                },
6756                "defaultValue": null,
6757                "isDeprecated": false,
6758                "deprecationReason": null
6759              }
6760            ],
6761            "type": {
6762              "kind": "NON_NULL",
6763              "name": null,
6764              "ofType": {
6765                "kind": "LIST",
6766                "name": null,
6767                "ofType": {
6768                  "kind": "NON_NULL",
6769                  "name": null,
6770                  "ofType": {
6771                    "kind": "INTERFACE",
6772                    "name": "ActivityTimelineProjectActivity",
6773                    "ofType": null
6774                  }
6775                }
6776              }
6777            },
6778            "isDeprecated": false,
6779            "deprecationReason": null
6780          },
6781          {
6782            "name": "androidAppCredentials",
6783            "description": "Android app credentials for the project",
6784            "args": [
6785              {
6786                "name": "filter",
6787                "description": null,
6788                "type": {
6789                  "kind": "INPUT_OBJECT",
6790                  "name": "AndroidAppCredentialsFilter",
6791                  "ofType": null
6792                },
6793                "defaultValue": null,
6794                "isDeprecated": false,
6795                "deprecationReason": null
6796              }
6797            ],
6798            "type": {
6799              "kind": "NON_NULL",
6800              "name": null,
6801              "ofType": {
6802                "kind": "LIST",
6803                "name": null,
6804                "ofType": {
6805                  "kind": "NON_NULL",
6806                  "name": null,
6807                  "ofType": {
6808                    "kind": "OBJECT",
6809                    "name": "AndroidAppCredentials",
6810                    "ofType": null
6811                  }
6812                }
6813              }
6814            },
6815            "isDeprecated": false,
6816            "deprecationReason": null
6817          },
6818          {
6819            "name": "appStoreUrl",
6820            "description": "ios.appStoreUrl field from most recent classic update manifest",
6821            "args": [],
6822            "type": {
6823              "kind": "SCALAR",
6824              "name": "String",
6825              "ofType": null
6826            },
6827            "isDeprecated": false,
6828            "deprecationReason": null
6829          },
6830          {
6831            "name": "assetLimitPerUpdateGroup",
6832            "description": null,
6833            "args": [],
6834            "type": {
6835              "kind": "NON_NULL",
6836              "name": null,
6837              "ofType": {
6838                "kind": "SCALAR",
6839                "name": "Int",
6840                "ofType": null
6841              }
6842            },
6843            "isDeprecated": false,
6844            "deprecationReason": null
6845          },
6846          {
6847            "name": "branchesPaginated",
6848            "description": null,
6849            "args": [
6850              {
6851                "name": "after",
6852                "description": null,
6853                "type": {
6854                  "kind": "SCALAR",
6855                  "name": "String",
6856                  "ofType": null
6857                },
6858                "defaultValue": null,
6859                "isDeprecated": false,
6860                "deprecationReason": null
6861              },
6862              {
6863                "name": "before",
6864                "description": null,
6865                "type": {
6866                  "kind": "SCALAR",
6867                  "name": "String",
6868                  "ofType": null
6869                },
6870                "defaultValue": null,
6871                "isDeprecated": false,
6872                "deprecationReason": null
6873              },
6874              {
6875                "name": "first",
6876                "description": null,
6877                "type": {
6878                  "kind": "SCALAR",
6879                  "name": "Int",
6880                  "ofType": null
6881                },
6882                "defaultValue": null,
6883                "isDeprecated": false,
6884                "deprecationReason": null
6885              },
6886              {
6887                "name": "last",
6888                "description": null,
6889                "type": {
6890                  "kind": "SCALAR",
6891                  "name": "Int",
6892                  "ofType": null
6893                },
6894                "defaultValue": null,
6895                "isDeprecated": false,
6896                "deprecationReason": null
6897              }
6898            ],
6899            "type": {
6900              "kind": "NON_NULL",
6901              "name": null,
6902              "ofType": {
6903                "kind": "OBJECT",
6904                "name": "AppBranchesConnection",
6905                "ofType": null
6906              }
6907            },
6908            "isDeprecated": false,
6909            "deprecationReason": null
6910          },
6911          {
6912            "name": "buildJobs",
6913            "description": null,
6914            "args": [
6915              {
6916                "name": "limit",
6917                "description": null,
6918                "type": {
6919                  "kind": "NON_NULL",
6920                  "name": null,
6921                  "ofType": {
6922                    "kind": "SCALAR",
6923                    "name": "Int",
6924                    "ofType": null
6925                  }
6926                },
6927                "defaultValue": null,
6928                "isDeprecated": false,
6929                "deprecationReason": null
6930              },
6931              {
6932                "name": "offset",
6933                "description": null,
6934                "type": {
6935                  "kind": "NON_NULL",
6936                  "name": null,
6937                  "ofType": {
6938                    "kind": "SCALAR",
6939                    "name": "Int",
6940                    "ofType": null
6941                  }
6942                },
6943                "defaultValue": null,
6944                "isDeprecated": false,
6945                "deprecationReason": null
6946              },
6947              {
6948                "name": "status",
6949                "description": null,
6950                "type": {
6951                  "kind": "ENUM",
6952                  "name": "BuildStatus",
6953                  "ofType": null
6954                },
6955                "defaultValue": null,
6956                "isDeprecated": false,
6957                "deprecationReason": null
6958              }
6959            ],
6960            "type": {
6961              "kind": "NON_NULL",
6962              "name": null,
6963              "ofType": {
6964                "kind": "LIST",
6965                "name": null,
6966                "ofType": {
6967                  "kind": "NON_NULL",
6968                  "name": null,
6969                  "ofType": {
6970                    "kind": "OBJECT",
6971                    "name": "BuildJob",
6972                    "ofType": null
6973                  }
6974                }
6975              }
6976            },
6977            "isDeprecated": false,
6978            "deprecationReason": null
6979          },
6980          {
6981            "name": "buildOrBuildJobs",
6982            "description": "Coalesced Build (EAS) or BuildJob (Classic) items for this app.",
6983            "args": [
6984              {
6985                "name": "createdBefore",
6986                "description": " Offset the query ",
6987                "type": {
6988                  "kind": "SCALAR",
6989                  "name": "DateTime",
6990                  "ofType": null
6991                },
6992                "defaultValue": null,
6993                "isDeprecated": false,
6994                "deprecationReason": null
6995              },
6996              {
6997                "name": "limit",
6998                "description": null,
6999                "type": {
7000                  "kind": "NON_NULL",
7001                  "name": null,
7002                  "ofType": {
7003                    "kind": "SCALAR",
7004                    "name": "Int",
7005                    "ofType": null
7006                  }
7007                },
7008                "defaultValue": null,
7009                "isDeprecated": false,
7010                "deprecationReason": null
7011              }
7012            ],
7013            "type": {
7014              "kind": "NON_NULL",
7015              "name": null,
7016              "ofType": {
7017                "kind": "LIST",
7018                "name": null,
7019                "ofType": {
7020                  "kind": "NON_NULL",
7021                  "name": null,
7022                  "ofType": {
7023                    "kind": "INTERFACE",
7024                    "name": "BuildOrBuildJob",
7025                    "ofType": null
7026                  }
7027                }
7028              }
7029            },
7030            "isDeprecated": true,
7031            "deprecationReason": "Use activityTimelineProjectActivities with filterTypes instead"
7032          },
7033          {
7034            "name": "builds",
7035            "description": "(EAS Build) Builds associated with this app",
7036            "args": [
7037              {
7038                "name": "filter",
7039                "description": null,
7040                "type": {
7041                  "kind": "INPUT_OBJECT",
7042                  "name": "BuildFilter",
7043                  "ofType": null
7044                },
7045                "defaultValue": null,
7046                "isDeprecated": false,
7047                "deprecationReason": null
7048              },
7049              {
7050                "name": "limit",
7051                "description": null,
7052                "type": {
7053                  "kind": "NON_NULL",
7054                  "name": null,
7055                  "ofType": {
7056                    "kind": "SCALAR",
7057                    "name": "Int",
7058                    "ofType": null
7059                  }
7060                },
7061                "defaultValue": null,
7062                "isDeprecated": false,
7063                "deprecationReason": null
7064              },
7065              {
7066                "name": "offset",
7067                "description": null,
7068                "type": {
7069                  "kind": "NON_NULL",
7070                  "name": null,
7071                  "ofType": {
7072                    "kind": "SCALAR",
7073                    "name": "Int",
7074                    "ofType": null
7075                  }
7076                },
7077                "defaultValue": null,
7078                "isDeprecated": false,
7079                "deprecationReason": null
7080              },
7081              {
7082                "name": "platform",
7083                "description": "Deprecated, use filter instead",
7084                "type": {
7085                  "kind": "ENUM",
7086                  "name": "AppPlatform",
7087                  "ofType": null
7088                },
7089                "defaultValue": null,
7090                "isDeprecated": false,
7091                "deprecationReason": null
7092              },
7093              {
7094                "name": "status",
7095                "description": "Deprecated, use filter instead",
7096                "type": {
7097                  "kind": "ENUM",
7098                  "name": "BuildStatus",
7099                  "ofType": null
7100                },
7101                "defaultValue": null,
7102                "isDeprecated": false,
7103                "deprecationReason": null
7104              }
7105            ],
7106            "type": {
7107              "kind": "NON_NULL",
7108              "name": null,
7109              "ofType": {
7110                "kind": "LIST",
7111                "name": null,
7112                "ofType": {
7113                  "kind": "NON_NULL",
7114                  "name": null,
7115                  "ofType": {
7116                    "kind": "OBJECT",
7117                    "name": "Build",
7118                    "ofType": null
7119                  }
7120                }
7121              }
7122            },
7123            "isDeprecated": false,
7124            "deprecationReason": null
7125          },
7126          {
7127            "name": "buildsPaginated",
7128            "description": null,
7129            "args": [
7130              {
7131                "name": "after",
7132                "description": null,
7133                "type": {
7134                  "kind": "SCALAR",
7135                  "name": "String",
7136                  "ofType": null
7137                },
7138                "defaultValue": null,
7139                "isDeprecated": false,
7140                "deprecationReason": null
7141              },
7142              {
7143                "name": "before",
7144                "description": null,
7145                "type": {
7146                  "kind": "SCALAR",
7147                  "name": "String",
7148                  "ofType": null
7149                },
7150                "defaultValue": null,
7151                "isDeprecated": false,
7152                "deprecationReason": null
7153              },
7154              {
7155                "name": "filter",
7156                "description": null,
7157                "type": {
7158                  "kind": "INPUT_OBJECT",
7159                  "name": "BuildFilterInput",
7160                  "ofType": null
7161                },
7162                "defaultValue": null,
7163                "isDeprecated": false,
7164                "deprecationReason": null
7165              },
7166              {
7167                "name": "first",
7168                "description": null,
7169                "type": {
7170                  "kind": "SCALAR",
7171                  "name": "Int",
7172                  "ofType": null
7173                },
7174                "defaultValue": null,
7175                "isDeprecated": false,
7176                "deprecationReason": null
7177              },
7178              {
7179                "name": "last",
7180                "description": null,
7181                "type": {
7182                  "kind": "SCALAR",
7183                  "name": "Int",
7184                  "ofType": null
7185                },
7186                "defaultValue": null,
7187                "isDeprecated": false,
7188                "deprecationReason": null
7189              }
7190            ],
7191            "type": {
7192              "kind": "NON_NULL",
7193              "name": null,
7194              "ofType": {
7195                "kind": "OBJECT",
7196                "name": "AppBuildsConnection",
7197                "ofType": null
7198              }
7199            },
7200            "isDeprecated": false,
7201            "deprecationReason": null
7202          },
7203          {
7204            "name": "buildsReleaseChannels",
7205            "description": "Classic update release channel names that have at least one build",
7206            "args": [],
7207            "type": {
7208              "kind": "NON_NULL",
7209              "name": null,
7210              "ofType": {
7211                "kind": "LIST",
7212                "name": null,
7213                "ofType": {
7214                  "kind": "NON_NULL",
7215                  "name": null,
7216                  "ofType": {
7217                    "kind": "SCALAR",
7218                    "name": "String",
7219                    "ofType": null
7220                  }
7221                }
7222              }
7223            },
7224            "isDeprecated": false,
7225            "deprecationReason": null
7226          },
7227          {
7228            "name": "channelsPaginated",
7229            "description": null,
7230            "args": [
7231              {
7232                "name": "after",
7233                "description": null,
7234                "type": {
7235                  "kind": "SCALAR",
7236                  "name": "String",
7237                  "ofType": null
7238                },
7239                "defaultValue": null,
7240                "isDeprecated": false,
7241                "deprecationReason": null
7242              },
7243              {
7244                "name": "before",
7245                "description": null,
7246                "type": {
7247                  "kind": "SCALAR",
7248                  "name": "String",
7249                  "ofType": null
7250                },
7251                "defaultValue": null,
7252                "isDeprecated": false,
7253                "deprecationReason": null
7254              },
7255              {
7256                "name": "filter",
7257                "description": null,
7258                "type": {
7259                  "kind": "INPUT_OBJECT",
7260                  "name": "ChannelFilterInput",
7261                  "ofType": null
7262                },
7263                "defaultValue": null,
7264                "isDeprecated": false,
7265                "deprecationReason": null
7266              },
7267              {
7268                "name": "first",
7269                "description": null,
7270                "type": {
7271                  "kind": "SCALAR",
7272                  "name": "Int",
7273                  "ofType": null
7274                },
7275                "defaultValue": null,
7276                "isDeprecated": false,
7277                "deprecationReason": null
7278              },
7279              {
7280                "name": "last",
7281                "description": null,
7282                "type": {
7283                  "kind": "SCALAR",
7284                  "name": "Int",
7285                  "ofType": null
7286                },
7287                "defaultValue": null,
7288                "isDeprecated": false,
7289                "deprecationReason": null
7290              }
7291            ],
7292            "type": {
7293              "kind": "NON_NULL",
7294              "name": null,
7295              "ofType": {
7296                "kind": "OBJECT",
7297                "name": "AppChannelsConnection",
7298                "ofType": null
7299              }
7300            },
7301            "isDeprecated": false,
7302            "deprecationReason": null
7303          },
7304          {
7305            "name": "deployment",
7306            "description": null,
7307            "args": [
7308              {
7309                "name": "channel",
7310                "description": null,
7311                "type": {
7312                  "kind": "NON_NULL",
7313                  "name": null,
7314                  "ofType": {
7315                    "kind": "SCALAR",
7316                    "name": "String",
7317                    "ofType": null
7318                  }
7319                },
7320                "defaultValue": null,
7321                "isDeprecated": false,
7322                "deprecationReason": null
7323              },
7324              {
7325                "name": "runtimeVersion",
7326                "description": null,
7327                "type": {
7328                  "kind": "NON_NULL",
7329                  "name": null,
7330                  "ofType": {
7331                    "kind": "SCALAR",
7332                    "name": "String",
7333                    "ofType": null
7334                  }
7335                },
7336                "defaultValue": null,
7337                "isDeprecated": false,
7338                "deprecationReason": null
7339              }
7340            ],
7341            "type": {
7342              "kind": "OBJECT",
7343              "name": "Deployment",
7344              "ofType": null
7345            },
7346            "isDeprecated": false,
7347            "deprecationReason": null
7348          },
7349          {
7350            "name": "deployments",
7351            "description": "Deployments associated with this app",
7352            "args": [
7353              {
7354                "name": "after",
7355                "description": null,
7356                "type": {
7357                  "kind": "SCALAR",
7358                  "name": "String",
7359                  "ofType": null
7360                },
7361                "defaultValue": null,
7362                "isDeprecated": false,
7363                "deprecationReason": null
7364              },
7365              {
7366                "name": "before",
7367                "description": null,
7368                "type": {
7369                  "kind": "SCALAR",
7370                  "name": "String",
7371                  "ofType": null
7372                },
7373                "defaultValue": null,
7374                "isDeprecated": false,
7375                "deprecationReason": null
7376              },
7377              {
7378                "name": "first",
7379                "description": null,
7380                "type": {
7381                  "kind": "SCALAR",
7382                  "name": "Int",
7383                  "ofType": null
7384                },
7385                "defaultValue": null,
7386                "isDeprecated": false,
7387                "deprecationReason": null
7388              },
7389              {
7390                "name": "last",
7391                "description": null,
7392                "type": {
7393                  "kind": "SCALAR",
7394                  "name": "Int",
7395                  "ofType": null
7396                },
7397                "defaultValue": null,
7398                "isDeprecated": false,
7399                "deprecationReason": null
7400              }
7401            ],
7402            "type": {
7403              "kind": "NON_NULL",
7404              "name": null,
7405              "ofType": {
7406                "kind": "OBJECT",
7407                "name": "DeploymentsConnection",
7408                "ofType": null
7409              }
7410            },
7411            "isDeprecated": false,
7412            "deprecationReason": null
7413          },
7414          {
7415            "name": "description",
7416            "description": null,
7417            "args": [],
7418            "type": {
7419              "kind": "NON_NULL",
7420              "name": null,
7421              "ofType": {
7422                "kind": "SCALAR",
7423                "name": "String",
7424                "ofType": null
7425              }
7426            },
7427            "isDeprecated": false,
7428            "deprecationReason": null
7429          },
7430          {
7431            "name": "environmentSecrets",
7432            "description": "Environment secrets for an app",
7433            "args": [
7434              {
7435                "name": "filterNames",
7436                "description": null,
7437                "type": {
7438                  "kind": "LIST",
7439                  "name": null,
7440                  "ofType": {
7441                    "kind": "NON_NULL",
7442                    "name": null,
7443                    "ofType": {
7444                      "kind": "SCALAR",
7445                      "name": "String",
7446                      "ofType": null
7447                    }
7448                  }
7449                },
7450                "defaultValue": null,
7451                "isDeprecated": false,
7452                "deprecationReason": null
7453              }
7454            ],
7455            "type": {
7456              "kind": "NON_NULL",
7457              "name": null,
7458              "ofType": {
7459                "kind": "LIST",
7460                "name": null,
7461                "ofType": {
7462                  "kind": "NON_NULL",
7463                  "name": null,
7464                  "ofType": {
7465                    "kind": "OBJECT",
7466                    "name": "EnvironmentSecret",
7467                    "ofType": null
7468                  }
7469                }
7470              }
7471            },
7472            "isDeprecated": false,
7473            "deprecationReason": null
7474          },
7475          {
7476            "name": "fullName",
7477            "description": null,
7478            "args": [],
7479            "type": {
7480              "kind": "NON_NULL",
7481              "name": null,
7482              "ofType": {
7483                "kind": "SCALAR",
7484                "name": "String",
7485                "ofType": null
7486              }
7487            },
7488            "isDeprecated": false,
7489            "deprecationReason": null
7490          },
7491          {
7492            "name": "githubRepository",
7493            "description": null,
7494            "args": [],
7495            "type": {
7496              "kind": "OBJECT",
7497              "name": "GitHubRepository",
7498              "ofType": null
7499            },
7500            "isDeprecated": false,
7501            "deprecationReason": null
7502          },
7503          {
7504            "name": "githubRepositorySettings",
7505            "description": null,
7506            "args": [],
7507            "type": {
7508              "kind": "OBJECT",
7509              "name": "GitHubRepositorySettings",
7510              "ofType": null
7511            },
7512            "isDeprecated": false,
7513            "deprecationReason": null
7514          },
7515          {
7516            "name": "githubUrl",
7517            "description": "githubUrl field from most recent classic update manifest",
7518            "args": [],
7519            "type": {
7520              "kind": "SCALAR",
7521              "name": "String",
7522              "ofType": null
7523            },
7524            "isDeprecated": false,
7525            "deprecationReason": null
7526          },
7527          {
7528            "name": "icon",
7529            "description": "Info about the icon specified in the most recent classic update manifest",
7530            "args": [],
7531            "type": {
7532              "kind": "OBJECT",
7533              "name": "AppIcon",
7534              "ofType": null
7535            },
7536            "isDeprecated": false,
7537            "deprecationReason": null
7538          },
7539          {
7540            "name": "iconUrl",
7541            "description": null,
7542            "args": [],
7543            "type": {
7544              "kind": "SCALAR",
7545              "name": "String",
7546              "ofType": null
7547            },
7548            "isDeprecated": true,
7549            "deprecationReason": "No longer supported"
7550          },
7551          {
7552            "name": "id",
7553            "description": null,
7554            "args": [],
7555            "type": {
7556              "kind": "NON_NULL",
7557              "name": null,
7558              "ofType": {
7559                "kind": "SCALAR",
7560                "name": "ID",
7561                "ofType": null
7562              }
7563            },
7564            "isDeprecated": false,
7565            "deprecationReason": null
7566          },
7567          {
7568            "name": "insights",
7569            "description": "App query field for querying EAS Insights about this app",
7570            "args": [],
7571            "type": {
7572              "kind": "NON_NULL",
7573              "name": null,
7574              "ofType": {
7575                "kind": "OBJECT",
7576                "name": "AppInsights",
7577                "ofType": null
7578              }
7579            },
7580            "isDeprecated": false,
7581            "deprecationReason": null
7582          },
7583          {
7584            "name": "iosAppCredentials",
7585            "description": "iOS app credentials for the project",
7586            "args": [
7587              {
7588                "name": "filter",
7589                "description": null,
7590                "type": {
7591                  "kind": "INPUT_OBJECT",
7592                  "name": "IosAppCredentialsFilter",
7593                  "ofType": null
7594                },
7595                "defaultValue": null,
7596                "isDeprecated": false,
7597                "deprecationReason": null
7598              }
7599            ],
7600            "type": {
7601              "kind": "NON_NULL",
7602              "name": null,
7603              "ofType": {
7604                "kind": "LIST",
7605                "name": null,
7606                "ofType": {
7607                  "kind": "NON_NULL",
7608                  "name": null,
7609                  "ofType": {
7610                    "kind": "OBJECT",
7611                    "name": "IosAppCredentials",
7612                    "ofType": null
7613                  }
7614                }
7615              }
7616            },
7617            "isDeprecated": false,
7618            "deprecationReason": null
7619          },
7620          {
7621            "name": "isDeprecated",
7622            "description": "Whether the latest classic update publish is using a deprecated SDK version",
7623            "args": [],
7624            "type": {
7625              "kind": "NON_NULL",
7626              "name": null,
7627              "ofType": {
7628                "kind": "SCALAR",
7629                "name": "Boolean",
7630                "ofType": null
7631              }
7632            },
7633            "isDeprecated": false,
7634            "deprecationReason": null
7635          },
7636          {
7637            "name": "isLikedByMe",
7638            "description": null,
7639            "args": [],
7640            "type": {
7641              "kind": "NON_NULL",
7642              "name": null,
7643              "ofType": {
7644                "kind": "SCALAR",
7645                "name": "Boolean",
7646                "ofType": null
7647              }
7648            },
7649            "isDeprecated": true,
7650            "deprecationReason": "'likes' have been deprecated."
7651          },
7652          {
7653            "name": "lastPublishedTime",
7654            "description": null,
7655            "args": [],
7656            "type": {
7657              "kind": "NON_NULL",
7658              "name": null,
7659              "ofType": {
7660                "kind": "SCALAR",
7661                "name": "DateTime",
7662                "ofType": null
7663              }
7664            },
7665            "isDeprecated": true,
7666            "deprecationReason": "No longer supported"
7667          },
7668          {
7669            "name": "latestActivity",
7670            "description": "Time of the last user activity (update, branch, submission).",
7671            "args": [],
7672            "type": {
7673              "kind": "NON_NULL",
7674              "name": null,
7675              "ofType": {
7676                "kind": "SCALAR",
7677                "name": "DateTime",
7678                "ofType": null
7679              }
7680            },
7681            "isDeprecated": false,
7682            "deprecationReason": null
7683          },
7684          {
7685            "name": "latestAppVersionByPlatformAndApplicationIdentifier",
7686            "description": null,
7687            "args": [
7688              {
7689                "name": "applicationIdentifier",
7690                "description": null,
7691                "type": {
7692                  "kind": "NON_NULL",
7693                  "name": null,
7694                  "ofType": {
7695                    "kind": "SCALAR",
7696                    "name": "String",
7697                    "ofType": null
7698                  }
7699                },
7700                "defaultValue": null,
7701                "isDeprecated": false,
7702                "deprecationReason": null
7703              },
7704              {
7705                "name": "platform",
7706                "description": null,
7707                "type": {
7708                  "kind": "NON_NULL",
7709                  "name": null,
7710                  "ofType": {
7711                    "kind": "ENUM",
7712                    "name": "AppPlatform",
7713                    "ofType": null
7714                  }
7715                },
7716                "defaultValue": null,
7717                "isDeprecated": false,
7718                "deprecationReason": null
7719              }
7720            ],
7721            "type": {
7722              "kind": "OBJECT",
7723              "name": "AppVersion",
7724              "ofType": null
7725            },
7726            "isDeprecated": false,
7727            "deprecationReason": null
7728          },
7729          {
7730            "name": "latestReleaseForReleaseChannel",
7731            "description": null,
7732            "args": [
7733              {
7734                "name": "platform",
7735                "description": null,
7736                "type": {
7737                  "kind": "NON_NULL",
7738                  "name": null,
7739                  "ofType": {
7740                    "kind": "ENUM",
7741                    "name": "AppPlatform",
7742                    "ofType": null
7743                  }
7744                },
7745                "defaultValue": null,
7746                "isDeprecated": false,
7747                "deprecationReason": null
7748              },
7749              {
7750                "name": "releaseChannel",
7751                "description": null,
7752                "type": {
7753                  "kind": "NON_NULL",
7754                  "name": null,
7755                  "ofType": {
7756                    "kind": "SCALAR",
7757                    "name": "String",
7758                    "ofType": null
7759                  }
7760                },
7761                "defaultValue": null,
7762                "isDeprecated": false,
7763                "deprecationReason": null
7764              }
7765            ],
7766            "type": {
7767              "kind": "OBJECT",
7768              "name": "AppRelease",
7769              "ofType": null
7770            },
7771            "isDeprecated": false,
7772            "deprecationReason": null
7773          },
7774          {
7775            "name": "latestReleaseId",
7776            "description": "ID of latest classic update release",
7777            "args": [],
7778            "type": {
7779              "kind": "NON_NULL",
7780              "name": null,
7781              "ofType": {
7782                "kind": "SCALAR",
7783                "name": "ID",
7784                "ofType": null
7785              }
7786            },
7787            "isDeprecated": false,
7788            "deprecationReason": null
7789          },
7790          {
7791            "name": "likeCount",
7792            "description": null,
7793            "args": [],
7794            "type": {
7795              "kind": "NON_NULL",
7796              "name": null,
7797              "ofType": {
7798                "kind": "SCALAR",
7799                "name": "Int",
7800                "ofType": null
7801              }
7802            },
7803            "isDeprecated": true,
7804            "deprecationReason": "'likes' have been deprecated."
7805          },
7806          {
7807            "name": "likedBy",
7808            "description": null,
7809            "args": [
7810              {
7811                "name": "limit",
7812                "description": null,
7813                "type": {
7814                  "kind": "SCALAR",
7815                  "name": "Int",
7816                  "ofType": null
7817                },
7818                "defaultValue": null,
7819                "isDeprecated": false,
7820                "deprecationReason": null
7821              },
7822              {
7823                "name": "offset",
7824                "description": null,
7825                "type": {
7826                  "kind": "SCALAR",
7827                  "name": "Int",
7828                  "ofType": null
7829                },
7830                "defaultValue": null,
7831                "isDeprecated": false,
7832                "deprecationReason": null
7833              }
7834            ],
7835            "type": {
7836              "kind": "NON_NULL",
7837              "name": null,
7838              "ofType": {
7839                "kind": "LIST",
7840                "name": null,
7841                "ofType": {
7842                  "kind": "OBJECT",
7843                  "name": "User",
7844                  "ofType": null
7845                }
7846              }
7847            },
7848            "isDeprecated": true,
7849            "deprecationReason": "'likes' have been deprecated."
7850          },
7851          {
7852            "name": "name",
7853            "description": null,
7854            "args": [],
7855            "type": {
7856              "kind": "NON_NULL",
7857              "name": null,
7858              "ofType": {
7859                "kind": "SCALAR",
7860                "name": "String",
7861                "ofType": null
7862              }
7863            },
7864            "isDeprecated": false,
7865            "deprecationReason": null
7866          },
7867          {
7868            "name": "ownerAccount",
7869            "description": null,
7870            "args": [],
7871            "type": {
7872              "kind": "NON_NULL",
7873              "name": null,
7874              "ofType": {
7875                "kind": "OBJECT",
7876                "name": "Account",
7877                "ofType": null
7878              }
7879            },
7880            "isDeprecated": false,
7881            "deprecationReason": null
7882          },
7883          {
7884            "name": "packageName",
7885            "description": null,
7886            "args": [],
7887            "type": {
7888              "kind": "NON_NULL",
7889              "name": null,
7890              "ofType": {
7891                "kind": "SCALAR",
7892                "name": "String",
7893                "ofType": null
7894              }
7895            },
7896            "isDeprecated": true,
7897            "deprecationReason": "No longer supported"
7898          },
7899          {
7900            "name": "packageUsername",
7901            "description": null,
7902            "args": [],
7903            "type": {
7904              "kind": "NON_NULL",
7905              "name": null,
7906              "ofType": {
7907                "kind": "SCALAR",
7908                "name": "String",
7909                "ofType": null
7910              }
7911            },
7912            "isDeprecated": true,
7913            "deprecationReason": "No longer supported"
7914          },
7915          {
7916            "name": "playStoreUrl",
7917            "description": "android.playStoreUrl field from most recent classic update manifest",
7918            "args": [],
7919            "type": {
7920              "kind": "SCALAR",
7921              "name": "String",
7922              "ofType": null
7923            },
7924            "isDeprecated": false,
7925            "deprecationReason": null
7926          },
7927          {
7928            "name": "privacy",
7929            "description": null,
7930            "args": [],
7931            "type": {
7932              "kind": "NON_NULL",
7933              "name": null,
7934              "ofType": {
7935                "kind": "SCALAR",
7936                "name": "String",
7937                "ofType": null
7938              }
7939            },
7940            "isDeprecated": true,
7941            "deprecationReason": "Use 'privacySetting' instead."
7942          },
7943          {
7944            "name": "privacySetting",
7945            "description": null,
7946            "args": [],
7947            "type": {
7948              "kind": "NON_NULL",
7949              "name": null,
7950              "ofType": {
7951                "kind": "ENUM",
7952                "name": "AppPrivacy",
7953                "ofType": null
7954              }
7955            },
7956            "isDeprecated": false,
7957            "deprecationReason": null
7958          },
7959          {
7960            "name": "published",
7961            "description": "Whether there have been any classic update publishes",
7962            "args": [],
7963            "type": {
7964              "kind": "NON_NULL",
7965              "name": null,
7966              "ofType": {
7967                "kind": "SCALAR",
7968                "name": "Boolean",
7969                "ofType": null
7970              }
7971            },
7972            "isDeprecated": false,
7973            "deprecationReason": null
7974          },
7975          {
7976            "name": "pushSecurityEnabled",
7977            "description": null,
7978            "args": [],
7979            "type": {
7980              "kind": "NON_NULL",
7981              "name": null,
7982              "ofType": {
7983                "kind": "SCALAR",
7984                "name": "Boolean",
7985                "ofType": null
7986              }
7987            },
7988            "isDeprecated": false,
7989            "deprecationReason": null
7990          },
7991          {
7992            "name": "releaseChannels",
7993            "description": "Classic update release channel names (to be removed)",
7994            "args": [],
7995            "type": {
7996              "kind": "NON_NULL",
7997              "name": null,
7998              "ofType": {
7999                "kind": "LIST",
8000                "name": null,
8001                "ofType": {
8002                  "kind": "NON_NULL",
8003                  "name": null,
8004                  "ofType": {
8005                    "kind": "SCALAR",
8006                    "name": "String",
8007                    "ofType": null
8008                  }
8009                }
8010              }
8011            },
8012            "isDeprecated": false,
8013            "deprecationReason": null
8014          },
8015          {
8016            "name": "requiresAccessTokenForPushSecurity",
8017            "description": null,
8018            "args": [],
8019            "type": {
8020              "kind": "NON_NULL",
8021              "name": null,
8022              "ofType": {
8023                "kind": "SCALAR",
8024                "name": "Boolean",
8025                "ofType": null
8026              }
8027            },
8028            "isDeprecated": true,
8029            "deprecationReason": "Legacy access tokens are deprecated"
8030          },
8031          {
8032            "name": "scopeKey",
8033            "description": null,
8034            "args": [],
8035            "type": {
8036              "kind": "NON_NULL",
8037              "name": null,
8038              "ofType": {
8039                "kind": "SCALAR",
8040                "name": "String",
8041                "ofType": null
8042              }
8043            },
8044            "isDeprecated": false,
8045            "deprecationReason": null
8046          },
8047          {
8048            "name": "sdkVersion",
8049            "description": "SDK version of the latest classic update publish, 0.0.0 otherwise",
8050            "args": [],
8051            "type": {
8052              "kind": "NON_NULL",
8053              "name": null,
8054              "ofType": {
8055                "kind": "SCALAR",
8056                "name": "String",
8057                "ofType": null
8058              }
8059            },
8060            "isDeprecated": false,
8061            "deprecationReason": null
8062          },
8063          {
8064            "name": "slug",
8065            "description": null,
8066            "args": [],
8067            "type": {
8068              "kind": "NON_NULL",
8069              "name": null,
8070              "ofType": {
8071                "kind": "SCALAR",
8072                "name": "String",
8073                "ofType": null
8074              }
8075            },
8076            "isDeprecated": false,
8077            "deprecationReason": null
8078          },
8079          {
8080            "name": "submissions",
8081            "description": "EAS Submissions associated with this app",
8082            "args": [
8083              {
8084                "name": "filter",
8085                "description": null,
8086                "type": {
8087                  "kind": "NON_NULL",
8088                  "name": null,
8089                  "ofType": {
8090                    "kind": "INPUT_OBJECT",
8091                    "name": "SubmissionFilter",
8092                    "ofType": null
8093                  }
8094                },
8095                "defaultValue": null,
8096                "isDeprecated": false,
8097                "deprecationReason": null
8098              },
8099              {
8100                "name": "limit",
8101                "description": null,
8102                "type": {
8103                  "kind": "NON_NULL",
8104                  "name": null,
8105                  "ofType": {
8106                    "kind": "SCALAR",
8107                    "name": "Int",
8108                    "ofType": null
8109                  }
8110                },
8111                "defaultValue": null,
8112                "isDeprecated": false,
8113                "deprecationReason": null
8114              },
8115              {
8116                "name": "offset",
8117                "description": null,
8118                "type": {
8119                  "kind": "NON_NULL",
8120                  "name": null,
8121                  "ofType": {
8122                    "kind": "SCALAR",
8123                    "name": "Int",
8124                    "ofType": null
8125                  }
8126                },
8127                "defaultValue": null,
8128                "isDeprecated": false,
8129                "deprecationReason": null
8130              }
8131            ],
8132            "type": {
8133              "kind": "NON_NULL",
8134              "name": null,
8135              "ofType": {
8136                "kind": "LIST",
8137                "name": null,
8138                "ofType": {
8139                  "kind": "NON_NULL",
8140                  "name": null,
8141                  "ofType": {
8142                    "kind": "OBJECT",
8143                    "name": "Submission",
8144                    "ofType": null
8145                  }
8146                }
8147              }
8148            },
8149            "isDeprecated": false,
8150            "deprecationReason": null
8151          },
8152          {
8153            "name": "submissionsPaginated",
8154            "description": null,
8155            "args": [
8156              {
8157                "name": "after",
8158                "description": null,
8159                "type": {
8160                  "kind": "SCALAR",
8161                  "name": "String",
8162                  "ofType": null
8163                },
8164                "defaultValue": null,
8165                "isDeprecated": false,
8166                "deprecationReason": null
8167              },
8168              {
8169                "name": "before",
8170                "description": null,
8171                "type": {
8172                  "kind": "SCALAR",
8173                  "name": "String",
8174                  "ofType": null
8175                },
8176                "defaultValue": null,
8177                "isDeprecated": false,
8178                "deprecationReason": null
8179              },
8180              {
8181                "name": "first",
8182                "description": null,
8183                "type": {
8184                  "kind": "SCALAR",
8185                  "name": "Int",
8186                  "ofType": null
8187                },
8188                "defaultValue": null,
8189                "isDeprecated": false,
8190                "deprecationReason": null
8191              },
8192              {
8193                "name": "last",
8194                "description": null,
8195                "type": {
8196                  "kind": "SCALAR",
8197                  "name": "Int",
8198                  "ofType": null
8199                },
8200                "defaultValue": null,
8201                "isDeprecated": false,
8202                "deprecationReason": null
8203              }
8204            ],
8205            "type": {
8206              "kind": "NON_NULL",
8207              "name": null,
8208              "ofType": {
8209                "kind": "OBJECT",
8210                "name": "AppSubmissionsConnection",
8211                "ofType": null
8212              }
8213            },
8214            "isDeprecated": false,
8215            "deprecationReason": null
8216          },
8217          {
8218            "name": "timelineActivity",
8219            "description": "Coalesced project activity for an app using pagination",
8220            "args": [
8221              {
8222                "name": "after",
8223                "description": null,
8224                "type": {
8225                  "kind": "SCALAR",
8226                  "name": "String",
8227                  "ofType": null
8228                },
8229                "defaultValue": null,
8230                "isDeprecated": false,
8231                "deprecationReason": null
8232              },
8233              {
8234                "name": "before",
8235                "description": null,
8236                "type": {
8237                  "kind": "SCALAR",
8238                  "name": "String",
8239                  "ofType": null
8240                },
8241                "defaultValue": null,
8242                "isDeprecated": false,
8243                "deprecationReason": null
8244              },
8245              {
8246                "name": "filter",
8247                "description": null,
8248                "type": {
8249                  "kind": "INPUT_OBJECT",
8250                  "name": "TimelineActivityFilterInput",
8251                  "ofType": null
8252                },
8253                "defaultValue": null,
8254                "isDeprecated": false,
8255                "deprecationReason": null
8256              },
8257              {
8258                "name": "first",
8259                "description": null,
8260                "type": {
8261                  "kind": "SCALAR",
8262                  "name": "Int",
8263                  "ofType": null
8264                },
8265                "defaultValue": null,
8266                "isDeprecated": false,
8267                "deprecationReason": null
8268              },
8269              {
8270                "name": "last",
8271                "description": null,
8272                "type": {
8273                  "kind": "SCALAR",
8274                  "name": "Int",
8275                  "ofType": null
8276                },
8277                "defaultValue": null,
8278                "isDeprecated": false,
8279                "deprecationReason": null
8280              }
8281            ],
8282            "type": {
8283              "kind": "NON_NULL",
8284              "name": null,
8285              "ofType": {
8286                "kind": "OBJECT",
8287                "name": "TimelineActivityConnection",
8288                "ofType": null
8289              }
8290            },
8291            "isDeprecated": false,
8292            "deprecationReason": null
8293          },
8294          {
8295            "name": "trendScore",
8296            "description": null,
8297            "args": [],
8298            "type": {
8299              "kind": "NON_NULL",
8300              "name": null,
8301              "ofType": {
8302                "kind": "SCALAR",
8303                "name": "Float",
8304                "ofType": null
8305              }
8306            },
8307            "isDeprecated": true,
8308            "deprecationReason": "'likes' have been deprecated."
8309          },
8310          {
8311            "name": "updateBranchByName",
8312            "description": "get an EAS branch owned by the app by name",
8313            "args": [
8314              {
8315                "name": "name",
8316                "description": null,
8317                "type": {
8318                  "kind": "NON_NULL",
8319                  "name": null,
8320                  "ofType": {
8321                    "kind": "SCALAR",
8322                    "name": "String",
8323                    "ofType": null
8324                  }
8325                },
8326                "defaultValue": null,
8327                "isDeprecated": false,
8328                "deprecationReason": null
8329              }
8330            ],
8331            "type": {
8332              "kind": "OBJECT",
8333              "name": "UpdateBranch",
8334              "ofType": null
8335            },
8336            "isDeprecated": false,
8337            "deprecationReason": null
8338          },
8339          {
8340            "name": "updateBranches",
8341            "description": "EAS branches owned by an app",
8342            "args": [
8343              {
8344                "name": "limit",
8345                "description": null,
8346                "type": {
8347                  "kind": "NON_NULL",
8348                  "name": null,
8349                  "ofType": {
8350                    "kind": "SCALAR",
8351                    "name": "Int",
8352                    "ofType": null
8353                  }
8354                },
8355                "defaultValue": null,
8356                "isDeprecated": false,
8357                "deprecationReason": null
8358              },
8359              {
8360                "name": "offset",
8361                "description": null,
8362                "type": {
8363                  "kind": "NON_NULL",
8364                  "name": null,
8365                  "ofType": {
8366                    "kind": "SCALAR",
8367                    "name": "Int",
8368                    "ofType": null
8369                  }
8370                },
8371                "defaultValue": null,
8372                "isDeprecated": false,
8373                "deprecationReason": null
8374              }
8375            ],
8376            "type": {
8377              "kind": "NON_NULL",
8378              "name": null,
8379              "ofType": {
8380                "kind": "LIST",
8381                "name": null,
8382                "ofType": {
8383                  "kind": "NON_NULL",
8384                  "name": null,
8385                  "ofType": {
8386                    "kind": "OBJECT",
8387                    "name": "UpdateBranch",
8388                    "ofType": null
8389                  }
8390                }
8391              }
8392            },
8393            "isDeprecated": false,
8394            "deprecationReason": null
8395          },
8396          {
8397            "name": "updateChannelByName",
8398            "description": "get an EAS channel owned by the app by name",
8399            "args": [
8400              {
8401                "name": "name",
8402                "description": null,
8403                "type": {
8404                  "kind": "NON_NULL",
8405                  "name": null,
8406                  "ofType": {
8407                    "kind": "SCALAR",
8408                    "name": "String",
8409                    "ofType": null
8410                  }
8411                },
8412                "defaultValue": null,
8413                "isDeprecated": false,
8414                "deprecationReason": null
8415              }
8416            ],
8417            "type": {
8418              "kind": "OBJECT",
8419              "name": "UpdateChannel",
8420              "ofType": null
8421            },
8422            "isDeprecated": false,
8423            "deprecationReason": null
8424          },
8425          {
8426            "name": "updateChannels",
8427            "description": "EAS channels owned by an app",
8428            "args": [
8429              {
8430                "name": "limit",
8431                "description": null,
8432                "type": {
8433                  "kind": "NON_NULL",
8434                  "name": null,
8435                  "ofType": {
8436                    "kind": "SCALAR",
8437                    "name": "Int",
8438                    "ofType": null
8439                  }
8440                },
8441                "defaultValue": null,
8442                "isDeprecated": false,
8443                "deprecationReason": null
8444              },
8445              {
8446                "name": "offset",
8447                "description": null,
8448                "type": {
8449                  "kind": "NON_NULL",
8450                  "name": null,
8451                  "ofType": {
8452                    "kind": "SCALAR",
8453                    "name": "Int",
8454                    "ofType": null
8455                  }
8456                },
8457                "defaultValue": null,
8458                "isDeprecated": false,
8459                "deprecationReason": null
8460              }
8461            ],
8462            "type": {
8463              "kind": "NON_NULL",
8464              "name": null,
8465              "ofType": {
8466                "kind": "LIST",
8467                "name": null,
8468                "ofType": {
8469                  "kind": "NON_NULL",
8470                  "name": null,
8471                  "ofType": {
8472                    "kind": "OBJECT",
8473                    "name": "UpdateChannel",
8474                    "ofType": null
8475                  }
8476                }
8477              }
8478            },
8479            "isDeprecated": false,
8480            "deprecationReason": null
8481          },
8482          {
8483            "name": "updateGroups",
8484            "description": "EAS updates owned by an app grouped by update group",
8485            "args": [
8486              {
8487                "name": "filter",
8488                "description": null,
8489                "type": {
8490                  "kind": "INPUT_OBJECT",
8491                  "name": "UpdatesFilter",
8492                  "ofType": null
8493                },
8494                "defaultValue": null,
8495                "isDeprecated": false,
8496                "deprecationReason": null
8497              },
8498              {
8499                "name": "limit",
8500                "description": null,
8501                "type": {
8502                  "kind": "NON_NULL",
8503                  "name": null,
8504                  "ofType": {
8505                    "kind": "SCALAR",
8506                    "name": "Int",
8507                    "ofType": null
8508                  }
8509                },
8510                "defaultValue": null,
8511                "isDeprecated": false,
8512                "deprecationReason": null
8513              },
8514              {
8515                "name": "offset",
8516                "description": null,
8517                "type": {
8518                  "kind": "NON_NULL",
8519                  "name": null,
8520                  "ofType": {
8521                    "kind": "SCALAR",
8522                    "name": "Int",
8523                    "ofType": null
8524                  }
8525                },
8526                "defaultValue": null,
8527                "isDeprecated": false,
8528                "deprecationReason": null
8529              }
8530            ],
8531            "type": {
8532              "kind": "NON_NULL",
8533              "name": null,
8534              "ofType": {
8535                "kind": "LIST",
8536                "name": null,
8537                "ofType": {
8538                  "kind": "NON_NULL",
8539                  "name": null,
8540                  "ofType": {
8541                    "kind": "LIST",
8542                    "name": null,
8543                    "ofType": {
8544                      "kind": "NON_NULL",
8545                      "name": null,
8546                      "ofType": {
8547                        "kind": "OBJECT",
8548                        "name": "Update",
8549                        "ofType": null
8550                      }
8551                    }
8552                  }
8553                }
8554              }
8555            },
8556            "isDeprecated": false,
8557            "deprecationReason": null
8558          },
8559          {
8560            "name": "updated",
8561            "description": "Time of last classic update publish",
8562            "args": [],
8563            "type": {
8564              "kind": "NON_NULL",
8565              "name": null,
8566              "ofType": {
8567                "kind": "SCALAR",
8568                "name": "DateTime",
8569                "ofType": null
8570              }
8571            },
8572            "isDeprecated": false,
8573            "deprecationReason": null
8574          },
8575          {
8576            "name": "updates",
8577            "description": "EAS updates owned by an app",
8578            "args": [
8579              {
8580                "name": "limit",
8581                "description": null,
8582                "type": {
8583                  "kind": "NON_NULL",
8584                  "name": null,
8585                  "ofType": {
8586                    "kind": "SCALAR",
8587                    "name": "Int",
8588                    "ofType": null
8589                  }
8590                },
8591                "defaultValue": null,
8592                "isDeprecated": false,
8593                "deprecationReason": null
8594              },
8595              {
8596                "name": "offset",
8597                "description": null,
8598                "type": {
8599                  "kind": "NON_NULL",
8600                  "name": null,
8601                  "ofType": {
8602                    "kind": "SCALAR",
8603                    "name": "Int",
8604                    "ofType": null
8605                  }
8606                },
8607                "defaultValue": null,
8608                "isDeprecated": false,
8609                "deprecationReason": null
8610              }
8611            ],
8612            "type": {
8613              "kind": "NON_NULL",
8614              "name": null,
8615              "ofType": {
8616                "kind": "LIST",
8617                "name": null,
8618                "ofType": {
8619                  "kind": "NON_NULL",
8620                  "name": null,
8621                  "ofType": {
8622                    "kind": "OBJECT",
8623                    "name": "Update",
8624                    "ofType": null
8625                  }
8626                }
8627              }
8628            },
8629            "isDeprecated": false,
8630            "deprecationReason": null
8631          },
8632          {
8633            "name": "updatesPaginated",
8634            "description": null,
8635            "args": [
8636              {
8637                "name": "after",
8638                "description": null,
8639                "type": {
8640                  "kind": "SCALAR",
8641                  "name": "String",
8642                  "ofType": null
8643                },
8644                "defaultValue": null,
8645                "isDeprecated": false,
8646                "deprecationReason": null
8647              },
8648              {
8649                "name": "before",
8650                "description": null,
8651                "type": {
8652                  "kind": "SCALAR",
8653                  "name": "String",
8654                  "ofType": null
8655                },
8656                "defaultValue": null,
8657                "isDeprecated": false,
8658                "deprecationReason": null
8659              },
8660              {
8661                "name": "first",
8662                "description": null,
8663                "type": {
8664                  "kind": "SCALAR",
8665                  "name": "Int",
8666                  "ofType": null
8667                },
8668                "defaultValue": null,
8669                "isDeprecated": false,
8670                "deprecationReason": null
8671              },
8672              {
8673                "name": "last",
8674                "description": null,
8675                "type": {
8676                  "kind": "SCALAR",
8677                  "name": "Int",
8678                  "ofType": null
8679                },
8680                "defaultValue": null,
8681                "isDeprecated": false,
8682                "deprecationReason": null
8683              }
8684            ],
8685            "type": {
8686              "kind": "NON_NULL",
8687              "name": null,
8688              "ofType": {
8689                "kind": "OBJECT",
8690                "name": "AppUpdatesConnection",
8691                "ofType": null
8692              }
8693            },
8694            "isDeprecated": false,
8695            "deprecationReason": null
8696          },
8697          {
8698            "name": "username",
8699            "description": null,
8700            "args": [],
8701            "type": {
8702              "kind": "NON_NULL",
8703              "name": null,
8704              "ofType": {
8705                "kind": "SCALAR",
8706                "name": "String",
8707                "ofType": null
8708              }
8709            },
8710            "isDeprecated": true,
8711            "deprecationReason": "Use ownerAccount.name instead"
8712          },
8713          {
8714            "name": "users",
8715            "description": null,
8716            "args": [],
8717            "type": {
8718              "kind": "LIST",
8719              "name": null,
8720              "ofType": {
8721                "kind": "OBJECT",
8722                "name": "User",
8723                "ofType": null
8724              }
8725            },
8726            "isDeprecated": true,
8727            "deprecationReason": "No longer supported"
8728          },
8729          {
8730            "name": "webhooks",
8731            "description": "Webhooks for an app",
8732            "args": [
8733              {
8734                "name": "filter",
8735                "description": null,
8736                "type": {
8737                  "kind": "INPUT_OBJECT",
8738                  "name": "WebhookFilter",
8739                  "ofType": null
8740                },
8741                "defaultValue": null,
8742                "isDeprecated": false,
8743                "deprecationReason": null
8744              }
8745            ],
8746            "type": {
8747              "kind": "NON_NULL",
8748              "name": null,
8749              "ofType": {
8750                "kind": "LIST",
8751                "name": null,
8752                "ofType": {
8753                  "kind": "NON_NULL",
8754                  "name": null,
8755                  "ofType": {
8756                    "kind": "OBJECT",
8757                    "name": "Webhook",
8758                    "ofType": null
8759                  }
8760                }
8761              }
8762            },
8763            "isDeprecated": false,
8764            "deprecationReason": null
8765          }
8766        ],
8767        "inputFields": null,
8768        "interfaces": [
8769          {
8770            "kind": "INTERFACE",
8771            "name": "Project",
8772            "ofType": null
8773          }
8774        ],
8775        "enumValues": null,
8776        "possibleTypes": null
8777      },
8778      {
8779        "kind": "OBJECT",
8780        "name": "AppBranchEdge",
8781        "description": null,
8782        "fields": [
8783          {
8784            "name": "cursor",
8785            "description": null,
8786            "args": [],
8787            "type": {
8788              "kind": "NON_NULL",
8789              "name": null,
8790              "ofType": {
8791                "kind": "SCALAR",
8792                "name": "String",
8793                "ofType": null
8794              }
8795            },
8796            "isDeprecated": false,
8797            "deprecationReason": null
8798          },
8799          {
8800            "name": "node",
8801            "description": null,
8802            "args": [],
8803            "type": {
8804              "kind": "NON_NULL",
8805              "name": null,
8806              "ofType": {
8807                "kind": "OBJECT",
8808                "name": "UpdateBranch",
8809                "ofType": null
8810              }
8811            },
8812            "isDeprecated": false,
8813            "deprecationReason": null
8814          }
8815        ],
8816        "inputFields": null,
8817        "interfaces": [],
8818        "enumValues": null,
8819        "possibleTypes": null
8820      },
8821      {
8822        "kind": "OBJECT",
8823        "name": "AppBranchesConnection",
8824        "description": null,
8825        "fields": [
8826          {
8827            "name": "edges",
8828            "description": null,
8829            "args": [],
8830            "type": {
8831              "kind": "NON_NULL",
8832              "name": null,
8833              "ofType": {
8834                "kind": "LIST",
8835                "name": null,
8836                "ofType": {
8837                  "kind": "NON_NULL",
8838                  "name": null,
8839                  "ofType": {
8840                    "kind": "OBJECT",
8841                    "name": "AppBranchEdge",
8842                    "ofType": null
8843                  }
8844                }
8845              }
8846            },
8847            "isDeprecated": false,
8848            "deprecationReason": null
8849          },
8850          {
8851            "name": "pageInfo",
8852            "description": null,
8853            "args": [],
8854            "type": {
8855              "kind": "NON_NULL",
8856              "name": null,
8857              "ofType": {
8858                "kind": "OBJECT",
8859                "name": "PageInfo",
8860                "ofType": null
8861              }
8862            },
8863            "isDeprecated": false,
8864            "deprecationReason": null
8865          }
8866        ],
8867        "inputFields": null,
8868        "interfaces": [],
8869        "enumValues": null,
8870        "possibleTypes": null
8871      },
8872      {
8873        "kind": "OBJECT",
8874        "name": "AppBuildEdge",
8875        "description": null,
8876        "fields": [
8877          {
8878            "name": "cursor",
8879            "description": null,
8880            "args": [],
8881            "type": {
8882              "kind": "NON_NULL",
8883              "name": null,
8884              "ofType": {
8885                "kind": "SCALAR",
8886                "name": "String",
8887                "ofType": null
8888              }
8889            },
8890            "isDeprecated": false,
8891            "deprecationReason": null
8892          },
8893          {
8894            "name": "node",
8895            "description": null,
8896            "args": [],
8897            "type": {
8898              "kind": "NON_NULL",
8899              "name": null,
8900              "ofType": {
8901                "kind": "INTERFACE",
8902                "name": "BuildOrBuildJob",
8903                "ofType": null
8904              }
8905            },
8906            "isDeprecated": false,
8907            "deprecationReason": null
8908          }
8909        ],
8910        "inputFields": null,
8911        "interfaces": [],
8912        "enumValues": null,
8913        "possibleTypes": null
8914      },
8915      {
8916        "kind": "OBJECT",
8917        "name": "AppBuildsConnection",
8918        "description": null,
8919        "fields": [
8920          {
8921            "name": "edges",
8922            "description": null,
8923            "args": [],
8924            "type": {
8925              "kind": "NON_NULL",
8926              "name": null,
8927              "ofType": {
8928                "kind": "LIST",
8929                "name": null,
8930                "ofType": {
8931                  "kind": "NON_NULL",
8932                  "name": null,
8933                  "ofType": {
8934                    "kind": "OBJECT",
8935                    "name": "AppBuildEdge",
8936                    "ofType": null
8937                  }
8938                }
8939              }
8940            },
8941            "isDeprecated": false,
8942            "deprecationReason": null
8943          },
8944          {
8945            "name": "pageInfo",
8946            "description": null,
8947            "args": [],
8948            "type": {
8949              "kind": "NON_NULL",
8950              "name": null,
8951              "ofType": {
8952                "kind": "OBJECT",
8953                "name": "PageInfo",
8954                "ofType": null
8955              }
8956            },
8957            "isDeprecated": false,
8958            "deprecationReason": null
8959          }
8960        ],
8961        "inputFields": null,
8962        "interfaces": [],
8963        "enumValues": null,
8964        "possibleTypes": null
8965      },
8966      {
8967        "kind": "OBJECT",
8968        "name": "AppChannelEdge",
8969        "description": null,
8970        "fields": [
8971          {
8972            "name": "cursor",
8973            "description": null,
8974            "args": [],
8975            "type": {
8976              "kind": "NON_NULL",
8977              "name": null,
8978              "ofType": {
8979                "kind": "SCALAR",
8980                "name": "String",
8981                "ofType": null
8982              }
8983            },
8984            "isDeprecated": false,
8985            "deprecationReason": null
8986          },
8987          {
8988            "name": "node",
8989            "description": null,
8990            "args": [],
8991            "type": {
8992              "kind": "NON_NULL",
8993              "name": null,
8994              "ofType": {
8995                "kind": "OBJECT",
8996                "name": "UpdateChannel",
8997                "ofType": null
8998              }
8999            },
9000            "isDeprecated": false,
9001            "deprecationReason": null
9002          }
9003        ],
9004        "inputFields": null,
9005        "interfaces": [],
9006        "enumValues": null,
9007        "possibleTypes": null
9008      },
9009      {
9010        "kind": "OBJECT",
9011        "name": "AppChannelsConnection",
9012        "description": null,
9013        "fields": [
9014          {
9015            "name": "edges",
9016            "description": null,
9017            "args": [],
9018            "type": {
9019              "kind": "NON_NULL",
9020              "name": null,
9021              "ofType": {
9022                "kind": "LIST",
9023                "name": null,
9024                "ofType": {
9025                  "kind": "NON_NULL",
9026                  "name": null,
9027                  "ofType": {
9028                    "kind": "OBJECT",
9029                    "name": "AppChannelEdge",
9030                    "ofType": null
9031                  }
9032                }
9033              }
9034            },
9035            "isDeprecated": false,
9036            "deprecationReason": null
9037          },
9038          {
9039            "name": "pageInfo",
9040            "description": null,
9041            "args": [],
9042            "type": {
9043              "kind": "NON_NULL",
9044              "name": null,
9045              "ofType": {
9046                "kind": "OBJECT",
9047                "name": "PageInfo",
9048                "ofType": null
9049              }
9050            },
9051            "isDeprecated": false,
9052            "deprecationReason": null
9053          }
9054        ],
9055        "inputFields": null,
9056        "interfaces": [],
9057        "enumValues": null,
9058        "possibleTypes": null
9059      },
9060      {
9061        "kind": "INPUT_OBJECT",
9062        "name": "AppDataInput",
9063        "description": null,
9064        "fields": null,
9065        "inputFields": [
9066          {
9067            "name": "id",
9068            "description": null,
9069            "type": {
9070              "kind": "NON_NULL",
9071              "name": null,
9072              "ofType": {
9073                "kind": "SCALAR",
9074                "name": "ID",
9075                "ofType": null
9076              }
9077            },
9078            "defaultValue": null,
9079            "isDeprecated": false,
9080            "deprecationReason": null
9081          },
9082          {
9083            "name": "privacy",
9084            "description": null,
9085            "type": {
9086              "kind": "SCALAR",
9087              "name": "String",
9088              "ofType": null
9089            },
9090            "defaultValue": null,
9091            "isDeprecated": false,
9092            "deprecationReason": null
9093          }
9094        ],
9095        "interfaces": null,
9096        "enumValues": null,
9097        "possibleTypes": null
9098      },
9099      {
9100        "kind": "OBJECT",
9101        "name": "AppIcon",
9102        "description": null,
9103        "fields": [
9104          {
9105            "name": "colorPalette",
9106            "description": null,
9107            "args": [],
9108            "type": {
9109              "kind": "SCALAR",
9110              "name": "JSON",
9111              "ofType": null
9112            },
9113            "isDeprecated": true,
9114            "deprecationReason": "No longer supported"
9115          },
9116          {
9117            "name": "originalUrl",
9118            "description": null,
9119            "args": [],
9120            "type": {
9121              "kind": "NON_NULL",
9122              "name": null,
9123              "ofType": {
9124                "kind": "SCALAR",
9125                "name": "String",
9126                "ofType": null
9127              }
9128            },
9129            "isDeprecated": false,
9130            "deprecationReason": null
9131          },
9132          {
9133            "name": "primaryColor",
9134            "description": null,
9135            "args": [],
9136            "type": {
9137              "kind": "SCALAR",
9138              "name": "String",
9139              "ofType": null
9140            },
9141            "isDeprecated": false,
9142            "deprecationReason": null
9143          },
9144          {
9145            "name": "url",
9146            "description": null,
9147            "args": [],
9148            "type": {
9149              "kind": "NON_NULL",
9150              "name": null,
9151              "ofType": {
9152                "kind": "SCALAR",
9153                "name": "String",
9154                "ofType": null
9155              }
9156            },
9157            "isDeprecated": false,
9158            "deprecationReason": null
9159          }
9160        ],
9161        "inputFields": null,
9162        "interfaces": [],
9163        "enumValues": null,
9164        "possibleTypes": null
9165      },
9166      {
9167        "kind": "INPUT_OBJECT",
9168        "name": "AppInfoInput",
9169        "description": null,
9170        "fields": null,
9171        "inputFields": [
9172          {
9173            "name": "displayName",
9174            "description": null,
9175            "type": {
9176              "kind": "SCALAR",
9177              "name": "String",
9178              "ofType": null
9179            },
9180            "defaultValue": null,
9181            "isDeprecated": false,
9182            "deprecationReason": null
9183          }
9184        ],
9185        "interfaces": null,
9186        "enumValues": null,
9187        "possibleTypes": null
9188      },
9189      {
9190        "kind": "INPUT_OBJECT",
9191        "name": "AppInput",
9192        "description": null,
9193        "fields": null,
9194        "inputFields": [
9195          {
9196            "name": "accountId",
9197            "description": null,
9198            "type": {
9199              "kind": "NON_NULL",
9200              "name": null,
9201              "ofType": {
9202                "kind": "SCALAR",
9203                "name": "ID",
9204                "ofType": null
9205              }
9206            },
9207            "defaultValue": null,
9208            "isDeprecated": false,
9209            "deprecationReason": null
9210          },
9211          {
9212            "name": "appInfo",
9213            "description": null,
9214            "type": {
9215              "kind": "INPUT_OBJECT",
9216              "name": "AppInfoInput",
9217              "ofType": null
9218            },
9219            "defaultValue": null,
9220            "isDeprecated": false,
9221            "deprecationReason": null
9222          },
9223          {
9224            "name": "privacy",
9225            "description": null,
9226            "type": {
9227              "kind": "NON_NULL",
9228              "name": null,
9229              "ofType": {
9230                "kind": "ENUM",
9231                "name": "AppPrivacy",
9232                "ofType": null
9233              }
9234            },
9235            "defaultValue": null,
9236            "isDeprecated": false,
9237            "deprecationReason": null
9238          },
9239          {
9240            "name": "projectName",
9241            "description": null,
9242            "type": {
9243              "kind": "NON_NULL",
9244              "name": null,
9245              "ofType": {
9246                "kind": "SCALAR",
9247                "name": "String",
9248                "ofType": null
9249              }
9250            },
9251            "defaultValue": null,
9252            "isDeprecated": false,
9253            "deprecationReason": null
9254          }
9255        ],
9256        "interfaces": null,
9257        "enumValues": null,
9258        "possibleTypes": null
9259      },
9260      {
9261        "kind": "OBJECT",
9262        "name": "AppInsights",
9263        "description": null,
9264        "fields": [
9265          {
9266            "name": "hasEventsFromExpoInsightsClientModule",
9267            "description": null,
9268            "args": [],
9269            "type": {
9270              "kind": "NON_NULL",
9271              "name": null,
9272              "ofType": {
9273                "kind": "SCALAR",
9274                "name": "Boolean",
9275                "ofType": null
9276              }
9277            },
9278            "isDeprecated": false,
9279            "deprecationReason": null
9280          },
9281          {
9282            "name": "totalUniqueUsers",
9283            "description": null,
9284            "args": [
9285              {
9286                "name": "timespan",
9287                "description": null,
9288                "type": {
9289                  "kind": "NON_NULL",
9290                  "name": null,
9291                  "ofType": {
9292                    "kind": "INPUT_OBJECT",
9293                    "name": "InsightsTimespan",
9294                    "ofType": null
9295                  }
9296                },
9297                "defaultValue": null,
9298                "isDeprecated": false,
9299                "deprecationReason": null
9300              }
9301            ],
9302            "type": {
9303              "kind": "SCALAR",
9304              "name": "Int",
9305              "ofType": null
9306            },
9307            "isDeprecated": false,
9308            "deprecationReason": null
9309          },
9310          {
9311            "name": "uniqueUsersByAppVersionOverTime",
9312            "description": null,
9313            "args": [
9314              {
9315                "name": "timespan",
9316                "description": null,
9317                "type": {
9318                  "kind": "NON_NULL",
9319                  "name": null,
9320                  "ofType": {
9321                    "kind": "INPUT_OBJECT",
9322                    "name": "InsightsTimespan",
9323                    "ofType": null
9324                  }
9325                },
9326                "defaultValue": null,
9327                "isDeprecated": false,
9328                "deprecationReason": null
9329              }
9330            ],
9331            "type": {
9332              "kind": "NON_NULL",
9333              "name": null,
9334              "ofType": {
9335                "kind": "OBJECT",
9336                "name": "UniqueUsersOverTimeData",
9337                "ofType": null
9338              }
9339            },
9340            "isDeprecated": false,
9341            "deprecationReason": null
9342          },
9343          {
9344            "name": "uniqueUsersByPlatformOverTime",
9345            "description": null,
9346            "args": [
9347              {
9348                "name": "timespan",
9349                "description": null,
9350                "type": {
9351                  "kind": "NON_NULL",
9352                  "name": null,
9353                  "ofType": {
9354                    "kind": "INPUT_OBJECT",
9355                    "name": "InsightsTimespan",
9356                    "ofType": null
9357                  }
9358                },
9359                "defaultValue": null,
9360                "isDeprecated": false,
9361                "deprecationReason": null
9362              }
9363            ],
9364            "type": {
9365              "kind": "NON_NULL",
9366              "name": null,
9367              "ofType": {
9368                "kind": "OBJECT",
9369                "name": "UniqueUsersOverTimeData",
9370                "ofType": null
9371              }
9372            },
9373            "isDeprecated": false,
9374            "deprecationReason": null
9375          }
9376        ],
9377        "inputFields": null,
9378        "interfaces": [],
9379        "enumValues": null,
9380        "possibleTypes": null
9381      },
9382      {
9383        "kind": "OBJECT",
9384        "name": "AppMutation",
9385        "description": null,
9386        "fields": [
9387          {
9388            "name": "createApp",
9389            "description": "Create an unpublished app",
9390            "args": [
9391              {
9392                "name": "appInput",
9393                "description": null,
9394                "type": {
9395                  "kind": "NON_NULL",
9396                  "name": null,
9397                  "ofType": {
9398                    "kind": "INPUT_OBJECT",
9399                    "name": "AppInput",
9400                    "ofType": null
9401                  }
9402                },
9403                "defaultValue": null,
9404                "isDeprecated": false,
9405                "deprecationReason": null
9406              }
9407            ],
9408            "type": {
9409              "kind": "NON_NULL",
9410              "name": null,
9411              "ofType": {
9412                "kind": "OBJECT",
9413                "name": "App",
9414                "ofType": null
9415              }
9416            },
9417            "isDeprecated": false,
9418            "deprecationReason": null
9419          },
9420          {
9421            "name": "grantAccess",
9422            "description": null,
9423            "args": [
9424              {
9425                "name": "accessLevel",
9426                "description": null,
9427                "type": {
9428                  "kind": "SCALAR",
9429                  "name": "String",
9430                  "ofType": null
9431                },
9432                "defaultValue": null,
9433                "isDeprecated": false,
9434                "deprecationReason": null
9435              },
9436              {
9437                "name": "toUser",
9438                "description": null,
9439                "type": {
9440                  "kind": "NON_NULL",
9441                  "name": null,
9442                  "ofType": {
9443                    "kind": "SCALAR",
9444                    "name": "ID",
9445                    "ofType": null
9446                  }
9447                },
9448                "defaultValue": null,
9449                "isDeprecated": false,
9450                "deprecationReason": null
9451              }
9452            ],
9453            "type": {
9454              "kind": "OBJECT",
9455              "name": "App",
9456              "ofType": null
9457            },
9458            "isDeprecated": true,
9459            "deprecationReason": "No longer supported"
9460          },
9461          {
9462            "name": "setAppInfo",
9463            "description": "Set display info for app",
9464            "args": [
9465              {
9466                "name": "appId",
9467                "description": null,
9468                "type": {
9469                  "kind": "NON_NULL",
9470                  "name": null,
9471                  "ofType": {
9472                    "kind": "SCALAR",
9473                    "name": "ID",
9474                    "ofType": null
9475                  }
9476                },
9477                "defaultValue": null,
9478                "isDeprecated": false,
9479                "deprecationReason": null
9480              },
9481              {
9482                "name": "appInfo",
9483                "description": null,
9484                "type": {
9485                  "kind": "NON_NULL",
9486                  "name": null,
9487                  "ofType": {
9488                    "kind": "INPUT_OBJECT",
9489                    "name": "AppInfoInput",
9490                    "ofType": null
9491                  }
9492                },
9493                "defaultValue": null,
9494                "isDeprecated": false,
9495                "deprecationReason": null
9496              }
9497            ],
9498            "type": {
9499              "kind": "NON_NULL",
9500              "name": null,
9501              "ofType": {
9502                "kind": "OBJECT",
9503                "name": "App",
9504                "ofType": null
9505              }
9506            },
9507            "isDeprecated": false,
9508            "deprecationReason": null
9509          },
9510          {
9511            "name": "setPushSecurityEnabled",
9512            "description": "Require api token to send push notifs for experience",
9513            "args": [
9514              {
9515                "name": "appId",
9516                "description": null,
9517                "type": {
9518                  "kind": "NON_NULL",
9519                  "name": null,
9520                  "ofType": {
9521                    "kind": "SCALAR",
9522                    "name": "ID",
9523                    "ofType": null
9524                  }
9525                },
9526                "defaultValue": null,
9527                "isDeprecated": false,
9528                "deprecationReason": null
9529              },
9530              {
9531                "name": "pushSecurityEnabled",
9532                "description": null,
9533                "type": {
9534                  "kind": "NON_NULL",
9535                  "name": null,
9536                  "ofType": {
9537                    "kind": "SCALAR",
9538                    "name": "Boolean",
9539                    "ofType": null
9540                  }
9541                },
9542                "defaultValue": null,
9543                "isDeprecated": false,
9544                "deprecationReason": null
9545              }
9546            ],
9547            "type": {
9548              "kind": "NON_NULL",
9549              "name": null,
9550              "ofType": {
9551                "kind": "OBJECT",
9552                "name": "App",
9553                "ofType": null
9554              }
9555            },
9556            "isDeprecated": false,
9557            "deprecationReason": null
9558          }
9559        ],
9560        "inputFields": null,
9561        "interfaces": [],
9562        "enumValues": null,
9563        "possibleTypes": null
9564      },
9565      {
9566        "kind": "INPUT_OBJECT",
9567        "name": "AppNotificationSubscriptionInput",
9568        "description": null,
9569        "fields": null,
9570        "inputFields": [
9571          {
9572            "name": "appId",
9573            "description": null,
9574            "type": {
9575              "kind": "NON_NULL",
9576              "name": null,
9577              "ofType": {
9578                "kind": "SCALAR",
9579                "name": "ID",
9580                "ofType": null
9581              }
9582            },
9583            "defaultValue": null,
9584            "isDeprecated": false,
9585            "deprecationReason": null
9586          },
9587          {
9588            "name": "event",
9589            "description": null,
9590            "type": {
9591              "kind": "NON_NULL",
9592              "name": null,
9593              "ofType": {
9594                "kind": "ENUM",
9595                "name": "NotificationEvent",
9596                "ofType": null
9597              }
9598            },
9599            "defaultValue": null,
9600            "isDeprecated": false,
9601            "deprecationReason": null
9602          },
9603          {
9604            "name": "type",
9605            "description": null,
9606            "type": {
9607              "kind": "NON_NULL",
9608              "name": null,
9609              "ofType": {
9610                "kind": "ENUM",
9611                "name": "NotificationType",
9612                "ofType": null
9613              }
9614            },
9615            "defaultValue": null,
9616            "isDeprecated": false,
9617            "deprecationReason": null
9618          },
9619          {
9620            "name": "userId",
9621            "description": null,
9622            "type": {
9623              "kind": "NON_NULL",
9624              "name": null,
9625              "ofType": {
9626                "kind": "SCALAR",
9627                "name": "ID",
9628                "ofType": null
9629              }
9630            },
9631            "defaultValue": null,
9632            "isDeprecated": false,
9633            "deprecationReason": null
9634          }
9635        ],
9636        "interfaces": null,
9637        "enumValues": null,
9638        "possibleTypes": null
9639      },
9640      {
9641        "kind": "ENUM",
9642        "name": "AppPlatform",
9643        "description": null,
9644        "fields": null,
9645        "inputFields": null,
9646        "interfaces": null,
9647        "enumValues": [
9648          {
9649            "name": "ANDROID",
9650            "description": null,
9651            "isDeprecated": false,
9652            "deprecationReason": null
9653          },
9654          {
9655            "name": "IOS",
9656            "description": null,
9657            "isDeprecated": false,
9658            "deprecationReason": null
9659          }
9660        ],
9661        "possibleTypes": null
9662      },
9663      {
9664        "kind": "ENUM",
9665        "name": "AppPrivacy",
9666        "description": null,
9667        "fields": null,
9668        "inputFields": null,
9669        "interfaces": null,
9670        "enumValues": [
9671          {
9672            "name": "HIDDEN",
9673            "description": null,
9674            "isDeprecated": false,
9675            "deprecationReason": null
9676          },
9677          {
9678            "name": "PUBLIC",
9679            "description": null,
9680            "isDeprecated": false,
9681            "deprecationReason": null
9682          },
9683          {
9684            "name": "UNLISTED",
9685            "description": null,
9686            "isDeprecated": false,
9687            "deprecationReason": null
9688          }
9689        ],
9690        "possibleTypes": null
9691      },
9692      {
9693        "kind": "OBJECT",
9694        "name": "AppQuery",
9695        "description": null,
9696        "fields": [
9697          {
9698            "name": "all",
9699            "description": "Public apps in the app directory",
9700            "args": [
9701              {
9702                "name": "filter",
9703                "description": "Filter to use to filter public app list",
9704                "type": {
9705                  "kind": "NON_NULL",
9706                  "name": null,
9707                  "ofType": {
9708                    "kind": "ENUM",
9709                    "name": "AppsFilter",
9710                    "ofType": null
9711                  }
9712                },
9713                "defaultValue": null,
9714                "isDeprecated": false,
9715                "deprecationReason": null
9716              },
9717              {
9718                "name": "limit",
9719                "description": null,
9720                "type": {
9721                  "kind": "SCALAR",
9722                  "name": "Int",
9723                  "ofType": null
9724                },
9725                "defaultValue": null,
9726                "isDeprecated": false,
9727                "deprecationReason": null
9728              },
9729              {
9730                "name": "offset",
9731                "description": null,
9732                "type": {
9733                  "kind": "SCALAR",
9734                  "name": "Int",
9735                  "ofType": null
9736                },
9737                "defaultValue": null,
9738                "isDeprecated": false,
9739                "deprecationReason": null
9740              },
9741              {
9742                "name": "sort",
9743                "description": "Method to sort by",
9744                "type": {
9745                  "kind": "NON_NULL",
9746                  "name": null,
9747                  "ofType": {
9748                    "kind": "ENUM",
9749                    "name": "AppSort",
9750                    "ofType": null
9751                  }
9752                },
9753                "defaultValue": null,
9754                "isDeprecated": false,
9755                "deprecationReason": null
9756              }
9757            ],
9758            "type": {
9759              "kind": "NON_NULL",
9760              "name": null,
9761              "ofType": {
9762                "kind": "LIST",
9763                "name": null,
9764                "ofType": {
9765                  "kind": "NON_NULL",
9766                  "name": null,
9767                  "ofType": {
9768                    "kind": "OBJECT",
9769                    "name": "App",
9770                    "ofType": null
9771                  }
9772                }
9773              }
9774            },
9775            "isDeprecated": true,
9776            "deprecationReason": "App directory no longer supported"
9777          },
9778          {
9779            "name": "byFullName",
9780            "description": null,
9781            "args": [
9782              {
9783                "name": "fullName",
9784                "description": "App full name used to look up app",
9785                "type": {
9786                  "kind": "NON_NULL",
9787                  "name": null,
9788                  "ofType": {
9789                    "kind": "SCALAR",
9790                    "name": "String",
9791                    "ofType": null
9792                  }
9793                },
9794                "defaultValue": null,
9795                "isDeprecated": false,
9796                "deprecationReason": null
9797              }
9798            ],
9799            "type": {
9800              "kind": "NON_NULL",
9801              "name": null,
9802              "ofType": {
9803                "kind": "OBJECT",
9804                "name": "App",
9805                "ofType": null
9806              }
9807            },
9808            "isDeprecated": false,
9809            "deprecationReason": null
9810          },
9811          {
9812            "name": "byId",
9813            "description": "Look up app by app id",
9814            "args": [
9815              {
9816                "name": "appId",
9817                "description": null,
9818                "type": {
9819                  "kind": "NON_NULL",
9820                  "name": null,
9821                  "ofType": {
9822                    "kind": "SCALAR",
9823                    "name": "String",
9824                    "ofType": null
9825                  }
9826                },
9827                "defaultValue": null,
9828                "isDeprecated": false,
9829                "deprecationReason": null
9830              }
9831            ],
9832            "type": {
9833              "kind": "NON_NULL",
9834              "name": null,
9835              "ofType": {
9836                "kind": "OBJECT",
9837                "name": "App",
9838                "ofType": null
9839              }
9840            },
9841            "isDeprecated": false,
9842            "deprecationReason": null
9843          }
9844        ],
9845        "inputFields": null,
9846        "interfaces": [],
9847        "enumValues": null,
9848        "possibleTypes": null
9849      },
9850      {
9851        "kind": "OBJECT",
9852        "name": "AppRelease",
9853        "description": null,
9854        "fields": [
9855          {
9856            "name": "hash",
9857            "description": null,
9858            "args": [],
9859            "type": {
9860              "kind": "NON_NULL",
9861              "name": null,
9862              "ofType": {
9863                "kind": "SCALAR",
9864                "name": "String",
9865                "ofType": null
9866              }
9867            },
9868            "isDeprecated": false,
9869            "deprecationReason": null
9870          },
9871          {
9872            "name": "id",
9873            "description": null,
9874            "args": [],
9875            "type": {
9876              "kind": "NON_NULL",
9877              "name": null,
9878              "ofType": {
9879                "kind": "SCALAR",
9880                "name": "ID",
9881                "ofType": null
9882              }
9883            },
9884            "isDeprecated": false,
9885            "deprecationReason": null
9886          },
9887          {
9888            "name": "manifest",
9889            "description": null,
9890            "args": [],
9891            "type": {
9892              "kind": "NON_NULL",
9893              "name": null,
9894              "ofType": {
9895                "kind": "SCALAR",
9896                "name": "JSON",
9897                "ofType": null
9898              }
9899            },
9900            "isDeprecated": false,
9901            "deprecationReason": null
9902          },
9903          {
9904            "name": "publishedTime",
9905            "description": null,
9906            "args": [],
9907            "type": {
9908              "kind": "NON_NULL",
9909              "name": null,
9910              "ofType": {
9911                "kind": "SCALAR",
9912                "name": "DateTime",
9913                "ofType": null
9914              }
9915            },
9916            "isDeprecated": false,
9917            "deprecationReason": null
9918          },
9919          {
9920            "name": "publishingUsername",
9921            "description": null,
9922            "args": [],
9923            "type": {
9924              "kind": "NON_NULL",
9925              "name": null,
9926              "ofType": {
9927                "kind": "SCALAR",
9928                "name": "String",
9929                "ofType": null
9930              }
9931            },
9932            "isDeprecated": false,
9933            "deprecationReason": null
9934          },
9935          {
9936            "name": "runtimeVersion",
9937            "description": null,
9938            "args": [],
9939            "type": {
9940              "kind": "SCALAR",
9941              "name": "String",
9942              "ofType": null
9943            },
9944            "isDeprecated": false,
9945            "deprecationReason": null
9946          },
9947          {
9948            "name": "s3Key",
9949            "description": null,
9950            "args": [],
9951            "type": {
9952              "kind": "NON_NULL",
9953              "name": null,
9954              "ofType": {
9955                "kind": "SCALAR",
9956                "name": "String",
9957                "ofType": null
9958              }
9959            },
9960            "isDeprecated": false,
9961            "deprecationReason": null
9962          },
9963          {
9964            "name": "s3Url",
9965            "description": null,
9966            "args": [],
9967            "type": {
9968              "kind": "NON_NULL",
9969              "name": null,
9970              "ofType": {
9971                "kind": "SCALAR",
9972                "name": "String",
9973                "ofType": null
9974              }
9975            },
9976            "isDeprecated": false,
9977            "deprecationReason": null
9978          },
9979          {
9980            "name": "sdkVersion",
9981            "description": null,
9982            "args": [],
9983            "type": {
9984              "kind": "NON_NULL",
9985              "name": null,
9986              "ofType": {
9987                "kind": "SCALAR",
9988                "name": "String",
9989                "ofType": null
9990              }
9991            },
9992            "isDeprecated": false,
9993            "deprecationReason": null
9994          },
9995          {
9996            "name": "version",
9997            "description": null,
9998            "args": [],
9999            "type": {
10000              "kind": "NON_NULL",
10001              "name": null,
10002              "ofType": {
10003                "kind": "SCALAR",
10004                "name": "String",
10005                "ofType": null
10006              }
10007            },
10008            "isDeprecated": false,
10009            "deprecationReason": null
10010          }
10011        ],
10012        "inputFields": null,
10013        "interfaces": [],
10014        "enumValues": null,
10015        "possibleTypes": null
10016      },
10017      {
10018        "kind": "ENUM",
10019        "name": "AppSort",
10020        "description": null,
10021        "fields": null,
10022        "inputFields": null,
10023        "interfaces": null,
10024        "enumValues": [
10025          {
10026            "name": "RECENTLY_PUBLISHED",
10027            "description": "Sort by recently published",
10028            "isDeprecated": false,
10029            "deprecationReason": null
10030          },
10031          {
10032            "name": "VIEWED",
10033            "description": "Sort by highest trendScore",
10034            "isDeprecated": false,
10035            "deprecationReason": null
10036          }
10037        ],
10038        "possibleTypes": null
10039      },
10040      {
10041        "kind": "OBJECT",
10042        "name": "AppStoreConnectApiKey",
10043        "description": null,
10044        "fields": [
10045          {
10046            "name": "account",
10047            "description": null,
10048            "args": [],
10049            "type": {
10050              "kind": "NON_NULL",
10051              "name": null,
10052              "ofType": {
10053                "kind": "OBJECT",
10054                "name": "Account",
10055                "ofType": null
10056              }
10057            },
10058            "isDeprecated": false,
10059            "deprecationReason": null
10060          },
10061          {
10062            "name": "appleTeam",
10063            "description": null,
10064            "args": [],
10065            "type": {
10066              "kind": "OBJECT",
10067              "name": "AppleTeam",
10068              "ofType": null
10069            },
10070            "isDeprecated": false,
10071            "deprecationReason": null
10072          },
10073          {
10074            "name": "createdAt",
10075            "description": null,
10076            "args": [],
10077            "type": {
10078              "kind": "NON_NULL",
10079              "name": null,
10080              "ofType": {
10081                "kind": "SCALAR",
10082                "name": "DateTime",
10083                "ofType": null
10084              }
10085            },
10086            "isDeprecated": false,
10087            "deprecationReason": null
10088          },
10089          {
10090            "name": "id",
10091            "description": null,
10092            "args": [],
10093            "type": {
10094              "kind": "NON_NULL",
10095              "name": null,
10096              "ofType": {
10097                "kind": "SCALAR",
10098                "name": "ID",
10099                "ofType": null
10100              }
10101            },
10102            "isDeprecated": false,
10103            "deprecationReason": null
10104          },
10105          {
10106            "name": "issuerIdentifier",
10107            "description": null,
10108            "args": [],
10109            "type": {
10110              "kind": "NON_NULL",
10111              "name": null,
10112              "ofType": {
10113                "kind": "SCALAR",
10114                "name": "String",
10115                "ofType": null
10116              }
10117            },
10118            "isDeprecated": false,
10119            "deprecationReason": null
10120          },
10121          {
10122            "name": "keyIdentifier",
10123            "description": null,
10124            "args": [],
10125            "type": {
10126              "kind": "NON_NULL",
10127              "name": null,
10128              "ofType": {
10129                "kind": "SCALAR",
10130                "name": "String",
10131                "ofType": null
10132              }
10133            },
10134            "isDeprecated": false,
10135            "deprecationReason": null
10136          },
10137          {
10138            "name": "name",
10139            "description": null,
10140            "args": [],
10141            "type": {
10142              "kind": "SCALAR",
10143              "name": "String",
10144              "ofType": null
10145            },
10146            "isDeprecated": false,
10147            "deprecationReason": null
10148          },
10149          {
10150            "name": "roles",
10151            "description": null,
10152            "args": [],
10153            "type": {
10154              "kind": "LIST",
10155              "name": null,
10156              "ofType": {
10157                "kind": "NON_NULL",
10158                "name": null,
10159                "ofType": {
10160                  "kind": "ENUM",
10161                  "name": "AppStoreConnectUserRole",
10162                  "ofType": null
10163                }
10164              }
10165            },
10166            "isDeprecated": false,
10167            "deprecationReason": null
10168          },
10169          {
10170            "name": "updatedAt",
10171            "description": null,
10172            "args": [],
10173            "type": {
10174              "kind": "NON_NULL",
10175              "name": null,
10176              "ofType": {
10177                "kind": "SCALAR",
10178                "name": "DateTime",
10179                "ofType": null
10180              }
10181            },
10182            "isDeprecated": false,
10183            "deprecationReason": null
10184          }
10185        ],
10186        "inputFields": null,
10187        "interfaces": [],
10188        "enumValues": null,
10189        "possibleTypes": null
10190      },
10191      {
10192        "kind": "INPUT_OBJECT",
10193        "name": "AppStoreConnectApiKeyInput",
10194        "description": null,
10195        "fields": null,
10196        "inputFields": [
10197          {
10198            "name": "appleTeamId",
10199            "description": null,
10200            "type": {
10201              "kind": "SCALAR",
10202              "name": "ID",
10203              "ofType": null
10204            },
10205            "defaultValue": null,
10206            "isDeprecated": false,
10207            "deprecationReason": null
10208          },
10209          {
10210            "name": "issuerIdentifier",
10211            "description": null,
10212            "type": {
10213              "kind": "NON_NULL",
10214              "name": null,
10215              "ofType": {
10216                "kind": "SCALAR",
10217                "name": "String",
10218                "ofType": null
10219              }
10220            },
10221            "defaultValue": null,
10222            "isDeprecated": false,
10223            "deprecationReason": null
10224          },
10225          {
10226            "name": "keyIdentifier",
10227            "description": null,
10228            "type": {
10229              "kind": "NON_NULL",
10230              "name": null,
10231              "ofType": {
10232                "kind": "SCALAR",
10233                "name": "String",
10234                "ofType": null
10235              }
10236            },
10237            "defaultValue": null,
10238            "isDeprecated": false,
10239            "deprecationReason": null
10240          },
10241          {
10242            "name": "keyP8",
10243            "description": null,
10244            "type": {
10245              "kind": "NON_NULL",
10246              "name": null,
10247              "ofType": {
10248                "kind": "SCALAR",
10249                "name": "String",
10250                "ofType": null
10251              }
10252            },
10253            "defaultValue": null,
10254            "isDeprecated": false,
10255            "deprecationReason": null
10256          },
10257          {
10258            "name": "name",
10259            "description": null,
10260            "type": {
10261              "kind": "SCALAR",
10262              "name": "String",
10263              "ofType": null
10264            },
10265            "defaultValue": null,
10266            "isDeprecated": false,
10267            "deprecationReason": null
10268          },
10269          {
10270            "name": "roles",
10271            "description": null,
10272            "type": {
10273              "kind": "LIST",
10274              "name": null,
10275              "ofType": {
10276                "kind": "NON_NULL",
10277                "name": null,
10278                "ofType": {
10279                  "kind": "ENUM",
10280                  "name": "AppStoreConnectUserRole",
10281                  "ofType": null
10282                }
10283              }
10284            },
10285            "defaultValue": null,
10286            "isDeprecated": false,
10287            "deprecationReason": null
10288          }
10289        ],
10290        "interfaces": null,
10291        "enumValues": null,
10292        "possibleTypes": null
10293      },
10294      {
10295        "kind": "OBJECT",
10296        "name": "AppStoreConnectApiKeyMutation",
10297        "description": null,
10298        "fields": [
10299          {
10300            "name": "createAppStoreConnectApiKey",
10301            "description": "Create an App Store Connect Api Key for an Apple Team",
10302            "args": [
10303              {
10304                "name": "accountId",
10305                "description": null,
10306                "type": {
10307                  "kind": "NON_NULL",
10308                  "name": null,
10309                  "ofType": {
10310                    "kind": "SCALAR",
10311                    "name": "ID",
10312                    "ofType": null
10313                  }
10314                },
10315                "defaultValue": null,
10316                "isDeprecated": false,
10317                "deprecationReason": null
10318              },
10319              {
10320                "name": "appStoreConnectApiKeyInput",
10321                "description": null,
10322                "type": {
10323                  "kind": "NON_NULL",
10324                  "name": null,
10325                  "ofType": {
10326                    "kind": "INPUT_OBJECT",
10327                    "name": "AppStoreConnectApiKeyInput",
10328                    "ofType": null
10329                  }
10330                },
10331                "defaultValue": null,
10332                "isDeprecated": false,
10333                "deprecationReason": null
10334              }
10335            ],
10336            "type": {
10337              "kind": "NON_NULL",
10338              "name": null,
10339              "ofType": {
10340                "kind": "OBJECT",
10341                "name": "AppStoreConnectApiKey",
10342                "ofType": null
10343              }
10344            },
10345            "isDeprecated": false,
10346            "deprecationReason": null
10347          },
10348          {
10349            "name": "deleteAppStoreConnectApiKey",
10350            "description": "Delete an App Store Connect Api Key",
10351            "args": [
10352              {
10353                "name": "id",
10354                "description": null,
10355                "type": {
10356                  "kind": "NON_NULL",
10357                  "name": null,
10358                  "ofType": {
10359                    "kind": "SCALAR",
10360                    "name": "ID",
10361                    "ofType": null
10362                  }
10363                },
10364                "defaultValue": null,
10365                "isDeprecated": false,
10366                "deprecationReason": null
10367              }
10368            ],
10369            "type": {
10370              "kind": "NON_NULL",
10371              "name": null,
10372              "ofType": {
10373                "kind": "OBJECT",
10374                "name": "deleteAppStoreConnectApiKeyResult",
10375                "ofType": null
10376              }
10377            },
10378            "isDeprecated": false,
10379            "deprecationReason": null
10380          }
10381        ],
10382        "inputFields": null,
10383        "interfaces": [],
10384        "enumValues": null,
10385        "possibleTypes": null
10386      },
10387      {
10388        "kind": "ENUM",
10389        "name": "AppStoreConnectUserRole",
10390        "description": null,
10391        "fields": null,
10392        "inputFields": null,
10393        "interfaces": null,
10394        "enumValues": [
10395          {
10396            "name": "ACCESS_TO_REPORTS",
10397            "description": null,
10398            "isDeprecated": false,
10399            "deprecationReason": null
10400          },
10401          {
10402            "name": "ACCOUNT_HOLDER",
10403            "description": null,
10404            "isDeprecated": false,
10405            "deprecationReason": null
10406          },
10407          {
10408            "name": "ADMIN",
10409            "description": null,
10410            "isDeprecated": false,
10411            "deprecationReason": null
10412          },
10413          {
10414            "name": "APP_MANAGER",
10415            "description": null,
10416            "isDeprecated": false,
10417            "deprecationReason": null
10418          },
10419          {
10420            "name": "CLOUD_MANAGED_APP_DISTRIBUTION",
10421            "description": null,
10422            "isDeprecated": false,
10423            "deprecationReason": null
10424          },
10425          {
10426            "name": "CLOUD_MANAGED_DEVELOPER_ID",
10427            "description": null,
10428            "isDeprecated": false,
10429            "deprecationReason": null
10430          },
10431          {
10432            "name": "CREATE_APPS",
10433            "description": null,
10434            "isDeprecated": false,
10435            "deprecationReason": null
10436          },
10437          {
10438            "name": "CUSTOMER_SUPPORT",
10439            "description": null,
10440            "isDeprecated": false,
10441            "deprecationReason": null
10442          },
10443          {
10444            "name": "DEVELOPER",
10445            "description": null,
10446            "isDeprecated": false,
10447            "deprecationReason": null
10448          },
10449          {
10450            "name": "FINANCE",
10451            "description": null,
10452            "isDeprecated": false,
10453            "deprecationReason": null
10454          },
10455          {
10456            "name": "IMAGE_MANAGER",
10457            "description": null,
10458            "isDeprecated": false,
10459            "deprecationReason": null
10460          },
10461          {
10462            "name": "MARKETING",
10463            "description": null,
10464            "isDeprecated": false,
10465            "deprecationReason": null
10466          },
10467          {
10468            "name": "READ_ONLY",
10469            "description": null,
10470            "isDeprecated": false,
10471            "deprecationReason": null
10472          },
10473          {
10474            "name": "SALES",
10475            "description": null,
10476            "isDeprecated": false,
10477            "deprecationReason": null
10478          },
10479          {
10480            "name": "TECHNICAL",
10481            "description": null,
10482            "isDeprecated": false,
10483            "deprecationReason": null
10484          },
10485          {
10486            "name": "UNKNOWN",
10487            "description": null,
10488            "isDeprecated": false,
10489            "deprecationReason": null
10490          }
10491        ],
10492        "possibleTypes": null
10493      },
10494      {
10495        "kind": "OBJECT",
10496        "name": "AppSubmissionEdge",
10497        "description": null,
10498        "fields": [
10499          {
10500            "name": "cursor",
10501            "description": null,
10502            "args": [],
10503            "type": {
10504              "kind": "NON_NULL",
10505              "name": null,
10506              "ofType": {
10507                "kind": "SCALAR",
10508                "name": "String",
10509                "ofType": null
10510              }
10511            },
10512            "isDeprecated": false,
10513            "deprecationReason": null
10514          },
10515          {
10516            "name": "node",
10517            "description": null,
10518            "args": [],
10519            "type": {
10520              "kind": "NON_NULL",
10521              "name": null,
10522              "ofType": {
10523                "kind": "OBJECT",
10524                "name": "Submission",
10525                "ofType": null
10526              }
10527            },
10528            "isDeprecated": false,
10529            "deprecationReason": null
10530          }
10531        ],
10532        "inputFields": null,
10533        "interfaces": [],
10534        "enumValues": null,
10535        "possibleTypes": null
10536      },
10537      {
10538        "kind": "OBJECT",
10539        "name": "AppSubmissionsConnection",
10540        "description": null,
10541        "fields": [
10542          {
10543            "name": "edges",
10544            "description": null,
10545            "args": [],
10546            "type": {
10547              "kind": "NON_NULL",
10548              "name": null,
10549              "ofType": {
10550                "kind": "LIST",
10551                "name": null,
10552                "ofType": {
10553                  "kind": "NON_NULL",
10554                  "name": null,
10555                  "ofType": {
10556                    "kind": "OBJECT",
10557                    "name": "AppSubmissionEdge",
10558                    "ofType": null
10559                  }
10560                }
10561              }
10562            },
10563            "isDeprecated": false,
10564            "deprecationReason": null
10565          },
10566          {
10567            "name": "pageInfo",
10568            "description": null,
10569            "args": [],
10570            "type": {
10571              "kind": "NON_NULL",
10572              "name": null,
10573              "ofType": {
10574                "kind": "OBJECT",
10575                "name": "PageInfo",
10576                "ofType": null
10577              }
10578            },
10579            "isDeprecated": false,
10580            "deprecationReason": null
10581          }
10582        ],
10583        "inputFields": null,
10584        "interfaces": [],
10585        "enumValues": null,
10586        "possibleTypes": null
10587      },
10588      {
10589        "kind": "OBJECT",
10590        "name": "AppUpdateEdge",
10591        "description": null,
10592        "fields": [
10593          {
10594            "name": "cursor",
10595            "description": null,
10596            "args": [],
10597            "type": {
10598              "kind": "NON_NULL",
10599              "name": null,
10600              "ofType": {
10601                "kind": "SCALAR",
10602                "name": "String",
10603                "ofType": null
10604              }
10605            },
10606            "isDeprecated": false,
10607            "deprecationReason": null
10608          },
10609          {
10610            "name": "node",
10611            "description": null,
10612            "args": [],
10613            "type": {
10614              "kind": "NON_NULL",
10615              "name": null,
10616              "ofType": {
10617                "kind": "OBJECT",
10618                "name": "Update",
10619                "ofType": null
10620              }
10621            },
10622            "isDeprecated": false,
10623            "deprecationReason": null
10624          }
10625        ],
10626        "inputFields": null,
10627        "interfaces": [],
10628        "enumValues": null,
10629        "possibleTypes": null
10630      },
10631      {
10632        "kind": "OBJECT",
10633        "name": "AppUpdatesConnection",
10634        "description": null,
10635        "fields": [
10636          {
10637            "name": "edges",
10638            "description": null,
10639            "args": [],
10640            "type": {
10641              "kind": "NON_NULL",
10642              "name": null,
10643              "ofType": {
10644                "kind": "LIST",
10645                "name": null,
10646                "ofType": {
10647                  "kind": "NON_NULL",
10648                  "name": null,
10649                  "ofType": {
10650                    "kind": "OBJECT",
10651                    "name": "AppUpdateEdge",
10652                    "ofType": null
10653                  }
10654                }
10655              }
10656            },
10657            "isDeprecated": false,
10658            "deprecationReason": null
10659          },
10660          {
10661            "name": "pageInfo",
10662            "description": null,
10663            "args": [],
10664            "type": {
10665              "kind": "NON_NULL",
10666              "name": null,
10667              "ofType": {
10668                "kind": "OBJECT",
10669                "name": "PageInfo",
10670                "ofType": null
10671              }
10672            },
10673            "isDeprecated": false,
10674            "deprecationReason": null
10675          }
10676        ],
10677        "inputFields": null,
10678        "interfaces": [],
10679        "enumValues": null,
10680        "possibleTypes": null
10681      },
10682      {
10683        "kind": "OBJECT",
10684        "name": "AppVersion",
10685        "description": "Represents Play Store/App Store version of an application",
10686        "fields": [
10687          {
10688            "name": "applicationIdentifier",
10689            "description": "Store identifier for an application\n - Android - applicationId\n - iOS - bundle identifier",
10690            "args": [],
10691            "type": {
10692              "kind": "NON_NULL",
10693              "name": null,
10694              "ofType": {
10695                "kind": "SCALAR",
10696                "name": "String",
10697                "ofType": null
10698              }
10699            },
10700            "isDeprecated": false,
10701            "deprecationReason": null
10702          },
10703          {
10704            "name": "buildVersion",
10705            "description": "Value that identifies build in a store (it's visible to developers, but not to end users)\n- Android - versionCode in build.gradle (\"android.versionCode\" field in app.json)\n- iOS - CFBundleVersion in Info.plist (\"ios.buildNumber\" field in app.json)",
10706            "args": [],
10707            "type": {
10708              "kind": "NON_NULL",
10709              "name": null,
10710              "ofType": {
10711                "kind": "SCALAR",
10712                "name": "String",
10713                "ofType": null
10714              }
10715            },
10716            "isDeprecated": false,
10717            "deprecationReason": null
10718          },
10719          {
10720            "name": "id",
10721            "description": null,
10722            "args": [],
10723            "type": {
10724              "kind": "NON_NULL",
10725              "name": null,
10726              "ofType": {
10727                "kind": "SCALAR",
10728                "name": "ID",
10729                "ofType": null
10730              }
10731            },
10732            "isDeprecated": false,
10733            "deprecationReason": null
10734          },
10735          {
10736            "name": "platform",
10737            "description": null,
10738            "args": [],
10739            "type": {
10740              "kind": "NON_NULL",
10741              "name": null,
10742              "ofType": {
10743                "kind": "ENUM",
10744                "name": "AppPlatform",
10745                "ofType": null
10746              }
10747            },
10748            "isDeprecated": false,
10749            "deprecationReason": null
10750          },
10751          {
10752            "name": "runtimeVersion",
10753            "description": null,
10754            "args": [],
10755            "type": {
10756              "kind": "SCALAR",
10757              "name": "String",
10758              "ofType": null
10759            },
10760            "isDeprecated": false,
10761            "deprecationReason": null
10762          },
10763          {
10764            "name": "storeVersion",
10765            "description": "User-facing version in a store\n- Android - versionName in build.gradle (\"version\" field in app.json)\n- iOS - CFBundleShortVersionString in Info.plist (\"version\" field in app.json)",
10766            "args": [],
10767            "type": {
10768              "kind": "NON_NULL",
10769              "name": null,
10770              "ofType": {
10771                "kind": "SCALAR",
10772                "name": "String",
10773                "ofType": null
10774              }
10775            },
10776            "isDeprecated": false,
10777            "deprecationReason": null
10778          }
10779        ],
10780        "inputFields": null,
10781        "interfaces": [],
10782        "enumValues": null,
10783        "possibleTypes": null
10784      },
10785      {
10786        "kind": "INPUT_OBJECT",
10787        "name": "AppVersionInput",
10788        "description": null,
10789        "fields": null,
10790        "inputFields": [
10791          {
10792            "name": "appId",
10793            "description": null,
10794            "type": {
10795              "kind": "NON_NULL",
10796              "name": null,
10797              "ofType": {
10798                "kind": "SCALAR",
10799                "name": "ID",
10800                "ofType": null
10801              }
10802            },
10803            "defaultValue": null,
10804            "isDeprecated": false,
10805            "deprecationReason": null
10806          },
10807          {
10808            "name": "applicationIdentifier",
10809            "description": null,
10810            "type": {
10811              "kind": "NON_NULL",
10812              "name": null,
10813              "ofType": {
10814                "kind": "SCALAR",
10815                "name": "String",
10816                "ofType": null
10817              }
10818            },
10819            "defaultValue": null,
10820            "isDeprecated": false,
10821            "deprecationReason": null
10822          },
10823          {
10824            "name": "buildVersion",
10825            "description": null,
10826            "type": {
10827              "kind": "NON_NULL",
10828              "name": null,
10829              "ofType": {
10830                "kind": "SCALAR",
10831                "name": "String",
10832                "ofType": null
10833              }
10834            },
10835            "defaultValue": null,
10836            "isDeprecated": false,
10837            "deprecationReason": null
10838          },
10839          {
10840            "name": "platform",
10841            "description": null,
10842            "type": {
10843              "kind": "NON_NULL",
10844              "name": null,
10845              "ofType": {
10846                "kind": "ENUM",
10847                "name": "AppPlatform",
10848                "ofType": null
10849              }
10850            },
10851            "defaultValue": null,
10852            "isDeprecated": false,
10853            "deprecationReason": null
10854          },
10855          {
10856            "name": "runtimeVersion",
10857            "description": null,
10858            "type": {
10859              "kind": "SCALAR",
10860              "name": "String",
10861              "ofType": null
10862            },
10863            "defaultValue": null,
10864            "isDeprecated": false,
10865            "deprecationReason": null
10866          },
10867          {
10868            "name": "storeVersion",
10869            "description": null,
10870            "type": {
10871              "kind": "NON_NULL",
10872              "name": null,
10873              "ofType": {
10874                "kind": "SCALAR",
10875                "name": "String",
10876                "ofType": null
10877              }
10878            },
10879            "defaultValue": null,
10880            "isDeprecated": false,
10881            "deprecationReason": null
10882          }
10883        ],
10884        "interfaces": null,
10885        "enumValues": null,
10886        "possibleTypes": null
10887      },
10888      {
10889        "kind": "OBJECT",
10890        "name": "AppVersionMutation",
10891        "description": null,
10892        "fields": [
10893          {
10894            "name": "createAppVersion",
10895            "description": "Create an app version",
10896            "args": [
10897              {
10898                "name": "appVersionInput",
10899                "description": null,
10900                "type": {
10901                  "kind": "NON_NULL",
10902                  "name": null,
10903                  "ofType": {
10904                    "kind": "INPUT_OBJECT",
10905                    "name": "AppVersionInput",
10906                    "ofType": null
10907                  }
10908                },
10909                "defaultValue": null,
10910                "isDeprecated": false,
10911                "deprecationReason": null
10912              }
10913            ],
10914            "type": {
10915              "kind": "NON_NULL",
10916              "name": null,
10917              "ofType": {
10918                "kind": "OBJECT",
10919                "name": "AppVersion",
10920                "ofType": null
10921              }
10922            },
10923            "isDeprecated": false,
10924            "deprecationReason": null
10925          }
10926        ],
10927        "inputFields": null,
10928        "interfaces": [],
10929        "enumValues": null,
10930        "possibleTypes": null
10931      },
10932      {
10933        "kind": "OBJECT",
10934        "name": "AppleAppIdentifier",
10935        "description": null,
10936        "fields": [
10937          {
10938            "name": "account",
10939            "description": null,
10940            "args": [],
10941            "type": {
10942              "kind": "NON_NULL",
10943              "name": null,
10944              "ofType": {
10945                "kind": "OBJECT",
10946                "name": "Account",
10947                "ofType": null
10948              }
10949            },
10950            "isDeprecated": false,
10951            "deprecationReason": null
10952          },
10953          {
10954            "name": "appleTeam",
10955            "description": null,
10956            "args": [],
10957            "type": {
10958              "kind": "OBJECT",
10959              "name": "AppleTeam",
10960              "ofType": null
10961            },
10962            "isDeprecated": false,
10963            "deprecationReason": null
10964          },
10965          {
10966            "name": "bundleIdentifier",
10967            "description": null,
10968            "args": [],
10969            "type": {
10970              "kind": "NON_NULL",
10971              "name": null,
10972              "ofType": {
10973                "kind": "SCALAR",
10974                "name": "String",
10975                "ofType": null
10976              }
10977            },
10978            "isDeprecated": false,
10979            "deprecationReason": null
10980          },
10981          {
10982            "name": "id",
10983            "description": null,
10984            "args": [],
10985            "type": {
10986              "kind": "NON_NULL",
10987              "name": null,
10988              "ofType": {
10989                "kind": "SCALAR",
10990                "name": "ID",
10991                "ofType": null
10992              }
10993            },
10994            "isDeprecated": false,
10995            "deprecationReason": null
10996          },
10997          {
10998            "name": "parentAppleAppIdentifier",
10999            "description": null,
11000            "args": [],
11001            "type": {
11002              "kind": "OBJECT",
11003              "name": "AppleAppIdentifier",
11004              "ofType": null
11005            },
11006            "isDeprecated": false,
11007            "deprecationReason": null
11008          }
11009        ],
11010        "inputFields": null,
11011        "interfaces": [],
11012        "enumValues": null,
11013        "possibleTypes": null
11014      },
11015      {
11016        "kind": "INPUT_OBJECT",
11017        "name": "AppleAppIdentifierInput",
11018        "description": null,
11019        "fields": null,
11020        "inputFields": [
11021          {
11022            "name": "appleTeamId",
11023            "description": null,
11024            "type": {
11025              "kind": "SCALAR",
11026              "name": "ID",
11027              "ofType": null
11028            },
11029            "defaultValue": null,
11030            "isDeprecated": false,
11031            "deprecationReason": null
11032          },
11033          {
11034            "name": "bundleIdentifier",
11035            "description": null,
11036            "type": {
11037              "kind": "NON_NULL",
11038              "name": null,
11039              "ofType": {
11040                "kind": "SCALAR",
11041                "name": "String",
11042                "ofType": null
11043              }
11044            },
11045            "defaultValue": null,
11046            "isDeprecated": false,
11047            "deprecationReason": null
11048          },
11049          {
11050            "name": "parentAppleAppId",
11051            "description": null,
11052            "type": {
11053              "kind": "SCALAR",
11054              "name": "ID",
11055              "ofType": null
11056            },
11057            "defaultValue": null,
11058            "isDeprecated": false,
11059            "deprecationReason": null
11060          }
11061        ],
11062        "interfaces": null,
11063        "enumValues": null,
11064        "possibleTypes": null
11065      },
11066      {
11067        "kind": "OBJECT",
11068        "name": "AppleAppIdentifierMutation",
11069        "description": null,
11070        "fields": [
11071          {
11072            "name": "createAppleAppIdentifier",
11073            "description": "Create an Identifier for an iOS App",
11074            "args": [
11075              {
11076                "name": "accountId",
11077                "description": null,
11078                "type": {
11079                  "kind": "NON_NULL",
11080                  "name": null,
11081                  "ofType": {
11082                    "kind": "SCALAR",
11083                    "name": "ID",
11084                    "ofType": null
11085                  }
11086                },
11087                "defaultValue": null,
11088                "isDeprecated": false,
11089                "deprecationReason": null
11090              },
11091              {
11092                "name": "appleAppIdentifierInput",
11093                "description": null,
11094                "type": {
11095                  "kind": "NON_NULL",
11096                  "name": null,
11097                  "ofType": {
11098                    "kind": "INPUT_OBJECT",
11099                    "name": "AppleAppIdentifierInput",
11100                    "ofType": null
11101                  }
11102                },
11103                "defaultValue": null,
11104                "isDeprecated": false,
11105                "deprecationReason": null
11106              }
11107            ],
11108            "type": {
11109              "kind": "NON_NULL",
11110              "name": null,
11111              "ofType": {
11112                "kind": "OBJECT",
11113                "name": "AppleAppIdentifier",
11114                "ofType": null
11115              }
11116            },
11117            "isDeprecated": false,
11118            "deprecationReason": null
11119          }
11120        ],
11121        "inputFields": null,
11122        "interfaces": [],
11123        "enumValues": null,
11124        "possibleTypes": null
11125      },
11126      {
11127        "kind": "OBJECT",
11128        "name": "AppleDevice",
11129        "description": null,
11130        "fields": [
11131          {
11132            "name": "account",
11133            "description": null,
11134            "args": [],
11135            "type": {
11136              "kind": "NON_NULL",
11137              "name": null,
11138              "ofType": {
11139                "kind": "OBJECT",
11140                "name": "Account",
11141                "ofType": null
11142              }
11143            },
11144            "isDeprecated": false,
11145            "deprecationReason": null
11146          },
11147          {
11148            "name": "appleTeam",
11149            "description": null,
11150            "args": [],
11151            "type": {
11152              "kind": "NON_NULL",
11153              "name": null,
11154              "ofType": {
11155                "kind": "OBJECT",
11156                "name": "AppleTeam",
11157                "ofType": null
11158              }
11159            },
11160            "isDeprecated": false,
11161            "deprecationReason": null
11162          },
11163          {
11164            "name": "deviceClass",
11165            "description": null,
11166            "args": [],
11167            "type": {
11168              "kind": "ENUM",
11169              "name": "AppleDeviceClass",
11170              "ofType": null
11171            },
11172            "isDeprecated": false,
11173            "deprecationReason": null
11174          },
11175          {
11176            "name": "enabled",
11177            "description": null,
11178            "args": [],
11179            "type": {
11180              "kind": "SCALAR",
11181              "name": "Boolean",
11182              "ofType": null
11183            },
11184            "isDeprecated": false,
11185            "deprecationReason": null
11186          },
11187          {
11188            "name": "id",
11189            "description": null,
11190            "args": [],
11191            "type": {
11192              "kind": "NON_NULL",
11193              "name": null,
11194              "ofType": {
11195                "kind": "SCALAR",
11196                "name": "ID",
11197                "ofType": null
11198              }
11199            },
11200            "isDeprecated": false,
11201            "deprecationReason": null
11202          },
11203          {
11204            "name": "identifier",
11205            "description": null,
11206            "args": [],
11207            "type": {
11208              "kind": "NON_NULL",
11209              "name": null,
11210              "ofType": {
11211                "kind": "SCALAR",
11212                "name": "String",
11213                "ofType": null
11214              }
11215            },
11216            "isDeprecated": false,
11217            "deprecationReason": null
11218          },
11219          {
11220            "name": "model",
11221            "description": null,
11222            "args": [],
11223            "type": {
11224              "kind": "SCALAR",
11225              "name": "String",
11226              "ofType": null
11227            },
11228            "isDeprecated": false,
11229            "deprecationReason": null
11230          },
11231          {
11232            "name": "name",
11233            "description": null,
11234            "args": [],
11235            "type": {
11236              "kind": "SCALAR",
11237              "name": "String",
11238              "ofType": null
11239            },
11240            "isDeprecated": false,
11241            "deprecationReason": null
11242          },
11243          {
11244            "name": "softwareVersion",
11245            "description": null,
11246            "args": [],
11247            "type": {
11248              "kind": "SCALAR",
11249              "name": "String",
11250              "ofType": null
11251            },
11252            "isDeprecated": false,
11253            "deprecationReason": null
11254          }
11255        ],
11256        "inputFields": null,
11257        "interfaces": [],
11258        "enumValues": null,
11259        "possibleTypes": null
11260      },
11261      {
11262        "kind": "ENUM",
11263        "name": "AppleDeviceClass",
11264        "description": null,
11265        "fields": null,
11266        "inputFields": null,
11267        "interfaces": null,
11268        "enumValues": [
11269          {
11270            "name": "IPAD",
11271            "description": null,
11272            "isDeprecated": false,
11273            "deprecationReason": null
11274          },
11275          {
11276            "name": "IPHONE",
11277            "description": null,
11278            "isDeprecated": false,
11279            "deprecationReason": null
11280          }
11281        ],
11282        "possibleTypes": null
11283      },
11284      {
11285        "kind": "INPUT_OBJECT",
11286        "name": "AppleDeviceInput",
11287        "description": null,
11288        "fields": null,
11289        "inputFields": [
11290          {
11291            "name": "appleTeamId",
11292            "description": null,
11293            "type": {
11294              "kind": "NON_NULL",
11295              "name": null,
11296              "ofType": {
11297                "kind": "SCALAR",
11298                "name": "ID",
11299                "ofType": null
11300              }
11301            },
11302            "defaultValue": null,
11303            "isDeprecated": false,
11304            "deprecationReason": null
11305          },
11306          {
11307            "name": "deviceClass",
11308            "description": null,
11309            "type": {
11310              "kind": "ENUM",
11311              "name": "AppleDeviceClass",
11312              "ofType": null
11313            },
11314            "defaultValue": null,
11315            "isDeprecated": false,
11316            "deprecationReason": null
11317          },
11318          {
11319            "name": "enabled",
11320            "description": null,
11321            "type": {
11322              "kind": "SCALAR",
11323              "name": "Boolean",
11324              "ofType": null
11325            },
11326            "defaultValue": null,
11327            "isDeprecated": false,
11328            "deprecationReason": null
11329          },
11330          {
11331            "name": "identifier",
11332            "description": null,
11333            "type": {
11334              "kind": "NON_NULL",
11335              "name": null,
11336              "ofType": {
11337                "kind": "SCALAR",
11338                "name": "String",
11339                "ofType": null
11340              }
11341            },
11342            "defaultValue": null,
11343            "isDeprecated": false,
11344            "deprecationReason": null
11345          },
11346          {
11347            "name": "model",
11348            "description": null,
11349            "type": {
11350              "kind": "SCALAR",
11351              "name": "String",
11352              "ofType": null
11353            },
11354            "defaultValue": null,
11355            "isDeprecated": false,
11356            "deprecationReason": null
11357          },
11358          {
11359            "name": "name",
11360            "description": null,
11361            "type": {
11362              "kind": "SCALAR",
11363              "name": "String",
11364              "ofType": null
11365            },
11366            "defaultValue": null,
11367            "isDeprecated": false,
11368            "deprecationReason": null
11369          },
11370          {
11371            "name": "softwareVersion",
11372            "description": null,
11373            "type": {
11374              "kind": "SCALAR",
11375              "name": "String",
11376              "ofType": null
11377            },
11378            "defaultValue": null,
11379            "isDeprecated": false,
11380            "deprecationReason": null
11381          }
11382        ],
11383        "interfaces": null,
11384        "enumValues": null,
11385        "possibleTypes": null
11386      },
11387      {
11388        "kind": "OBJECT",
11389        "name": "AppleDeviceMutation",
11390        "description": null,
11391        "fields": [
11392          {
11393            "name": "createAppleDevice",
11394            "description": "Create an Apple Device",
11395            "args": [
11396              {
11397                "name": "accountId",
11398                "description": null,
11399                "type": {
11400                  "kind": "NON_NULL",
11401                  "name": null,
11402                  "ofType": {
11403                    "kind": "SCALAR",
11404                    "name": "ID",
11405                    "ofType": null
11406                  }
11407                },
11408                "defaultValue": null,
11409                "isDeprecated": false,
11410                "deprecationReason": null
11411              },
11412              {
11413                "name": "appleDeviceInput",
11414                "description": null,
11415                "type": {
11416                  "kind": "NON_NULL",
11417                  "name": null,
11418                  "ofType": {
11419                    "kind": "INPUT_OBJECT",
11420                    "name": "AppleDeviceInput",
11421                    "ofType": null
11422                  }
11423                },
11424                "defaultValue": null,
11425                "isDeprecated": false,
11426                "deprecationReason": null
11427              }
11428            ],
11429            "type": {
11430              "kind": "NON_NULL",
11431              "name": null,
11432              "ofType": {
11433                "kind": "OBJECT",
11434                "name": "AppleDevice",
11435                "ofType": null
11436              }
11437            },
11438            "isDeprecated": false,
11439            "deprecationReason": null
11440          },
11441          {
11442            "name": "deleteAppleDevice",
11443            "description": "Delete an Apple Device",
11444            "args": [
11445              {
11446                "name": "id",
11447                "description": null,
11448                "type": {
11449                  "kind": "NON_NULL",
11450                  "name": null,
11451                  "ofType": {
11452                    "kind": "SCALAR",
11453                    "name": "ID",
11454                    "ofType": null
11455                  }
11456                },
11457                "defaultValue": null,
11458                "isDeprecated": false,
11459                "deprecationReason": null
11460              }
11461            ],
11462            "type": {
11463              "kind": "NON_NULL",
11464              "name": null,
11465              "ofType": {
11466                "kind": "OBJECT",
11467                "name": "DeleteAppleDeviceResult",
11468                "ofType": null
11469              }
11470            },
11471            "isDeprecated": false,
11472            "deprecationReason": null
11473          },
11474          {
11475            "name": "updateAppleDevice",
11476            "description": "Update an Apple Device",
11477            "args": [
11478              {
11479                "name": "appleDeviceUpdateInput",
11480                "description": null,
11481                "type": {
11482                  "kind": "NON_NULL",
11483                  "name": null,
11484                  "ofType": {
11485                    "kind": "INPUT_OBJECT",
11486                    "name": "AppleDeviceUpdateInput",
11487                    "ofType": null
11488                  }
11489                },
11490                "defaultValue": null,
11491                "isDeprecated": false,
11492                "deprecationReason": null
11493              },
11494              {
11495                "name": "id",
11496                "description": null,
11497                "type": {
11498                  "kind": "NON_NULL",
11499                  "name": null,
11500                  "ofType": {
11501                    "kind": "SCALAR",
11502                    "name": "ID",
11503                    "ofType": null
11504                  }
11505                },
11506                "defaultValue": null,
11507                "isDeprecated": false,
11508                "deprecationReason": null
11509              }
11510            ],
11511            "type": {
11512              "kind": "NON_NULL",
11513              "name": null,
11514              "ofType": {
11515                "kind": "OBJECT",
11516                "name": "AppleDevice",
11517                "ofType": null
11518              }
11519            },
11520            "isDeprecated": false,
11521            "deprecationReason": null
11522          }
11523        ],
11524        "inputFields": null,
11525        "interfaces": [],
11526        "enumValues": null,
11527        "possibleTypes": null
11528      },
11529      {
11530        "kind": "OBJECT",
11531        "name": "AppleDeviceRegistrationRequest",
11532        "description": null,
11533        "fields": [
11534          {
11535            "name": "account",
11536            "description": null,
11537            "args": [],
11538            "type": {
11539              "kind": "NON_NULL",
11540              "name": null,
11541              "ofType": {
11542                "kind": "OBJECT",
11543                "name": "Account",
11544                "ofType": null
11545              }
11546            },
11547            "isDeprecated": false,
11548            "deprecationReason": null
11549          },
11550          {
11551            "name": "appleTeam",
11552            "description": null,
11553            "args": [],
11554            "type": {
11555              "kind": "NON_NULL",
11556              "name": null,
11557              "ofType": {
11558                "kind": "OBJECT",
11559                "name": "AppleTeam",
11560                "ofType": null
11561              }
11562            },
11563            "isDeprecated": false,
11564            "deprecationReason": null
11565          },
11566          {
11567            "name": "id",
11568            "description": null,
11569            "args": [],
11570            "type": {
11571              "kind": "NON_NULL",
11572              "name": null,
11573              "ofType": {
11574                "kind": "SCALAR",
11575                "name": "ID",
11576                "ofType": null
11577              }
11578            },
11579            "isDeprecated": false,
11580            "deprecationReason": null
11581          }
11582        ],
11583        "inputFields": null,
11584        "interfaces": [],
11585        "enumValues": null,
11586        "possibleTypes": null
11587      },
11588      {
11589        "kind": "OBJECT",
11590        "name": "AppleDeviceRegistrationRequestMutation",
11591        "description": null,
11592        "fields": [
11593          {
11594            "name": "createAppleDeviceRegistrationRequest",
11595            "description": "Create an Apple Device registration request",
11596            "args": [
11597              {
11598                "name": "accountId",
11599                "description": null,
11600                "type": {
11601                  "kind": "NON_NULL",
11602                  "name": null,
11603                  "ofType": {
11604                    "kind": "SCALAR",
11605                    "name": "ID",
11606                    "ofType": null
11607                  }
11608                },
11609                "defaultValue": null,
11610                "isDeprecated": false,
11611                "deprecationReason": null
11612              },
11613              {
11614                "name": "appleTeamId",
11615                "description": null,
11616                "type": {
11617                  "kind": "NON_NULL",
11618                  "name": null,
11619                  "ofType": {
11620                    "kind": "SCALAR",
11621                    "name": "ID",
11622                    "ofType": null
11623                  }
11624                },
11625                "defaultValue": null,
11626                "isDeprecated": false,
11627                "deprecationReason": null
11628              }
11629            ],
11630            "type": {
11631              "kind": "NON_NULL",
11632              "name": null,
11633              "ofType": {
11634                "kind": "OBJECT",
11635                "name": "AppleDeviceRegistrationRequest",
11636                "ofType": null
11637              }
11638            },
11639            "isDeprecated": false,
11640            "deprecationReason": null
11641          }
11642        ],
11643        "inputFields": null,
11644        "interfaces": [],
11645        "enumValues": null,
11646        "possibleTypes": null
11647      },
11648      {
11649        "kind": "OBJECT",
11650        "name": "AppleDeviceRegistrationRequestQuery",
11651        "description": null,
11652        "fields": [
11653          {
11654            "name": "byId",
11655            "description": null,
11656            "args": [
11657              {
11658                "name": "id",
11659                "description": null,
11660                "type": {
11661                  "kind": "NON_NULL",
11662                  "name": null,
11663                  "ofType": {
11664                    "kind": "SCALAR",
11665                    "name": "ID",
11666                    "ofType": null
11667                  }
11668                },
11669                "defaultValue": null,
11670                "isDeprecated": false,
11671                "deprecationReason": null
11672              }
11673            ],
11674            "type": {
11675              "kind": "NON_NULL",
11676              "name": null,
11677              "ofType": {
11678                "kind": "OBJECT",
11679                "name": "AppleDeviceRegistrationRequest",
11680                "ofType": null
11681              }
11682            },
11683            "isDeprecated": false,
11684            "deprecationReason": null
11685          }
11686        ],
11687        "inputFields": null,
11688        "interfaces": [],
11689        "enumValues": null,
11690        "possibleTypes": null
11691      },
11692      {
11693        "kind": "INPUT_OBJECT",
11694        "name": "AppleDeviceUpdateInput",
11695        "description": null,
11696        "fields": null,
11697        "inputFields": [
11698          {
11699            "name": "name",
11700            "description": null,
11701            "type": {
11702              "kind": "SCALAR",
11703              "name": "String",
11704              "ofType": null
11705            },
11706            "defaultValue": null,
11707            "isDeprecated": false,
11708            "deprecationReason": null
11709          }
11710        ],
11711        "interfaces": null,
11712        "enumValues": null,
11713        "possibleTypes": null
11714      },
11715      {
11716        "kind": "OBJECT",
11717        "name": "AppleDistributionCertificate",
11718        "description": null,
11719        "fields": [
11720          {
11721            "name": "account",
11722            "description": null,
11723            "args": [],
11724            "type": {
11725              "kind": "NON_NULL",
11726              "name": null,
11727              "ofType": {
11728                "kind": "OBJECT",
11729                "name": "Account",
11730                "ofType": null
11731              }
11732            },
11733            "isDeprecated": false,
11734            "deprecationReason": null
11735          },
11736          {
11737            "name": "appleTeam",
11738            "description": null,
11739            "args": [],
11740            "type": {
11741              "kind": "OBJECT",
11742              "name": "AppleTeam",
11743              "ofType": null
11744            },
11745            "isDeprecated": false,
11746            "deprecationReason": null
11747          },
11748          {
11749            "name": "certificateP12",
11750            "description": null,
11751            "args": [],
11752            "type": {
11753              "kind": "SCALAR",
11754              "name": "String",
11755              "ofType": null
11756            },
11757            "isDeprecated": false,
11758            "deprecationReason": null
11759          },
11760          {
11761            "name": "certificatePassword",
11762            "description": null,
11763            "args": [],
11764            "type": {
11765              "kind": "SCALAR",
11766              "name": "String",
11767              "ofType": null
11768            },
11769            "isDeprecated": false,
11770            "deprecationReason": null
11771          },
11772          {
11773            "name": "certificatePrivateSigningKey",
11774            "description": null,
11775            "args": [],
11776            "type": {
11777              "kind": "SCALAR",
11778              "name": "String",
11779              "ofType": null
11780            },
11781            "isDeprecated": false,
11782            "deprecationReason": null
11783          },
11784          {
11785            "name": "createdAt",
11786            "description": null,
11787            "args": [],
11788            "type": {
11789              "kind": "NON_NULL",
11790              "name": null,
11791              "ofType": {
11792                "kind": "SCALAR",
11793                "name": "DateTime",
11794                "ofType": null
11795              }
11796            },
11797            "isDeprecated": false,
11798            "deprecationReason": null
11799          },
11800          {
11801            "name": "developerPortalIdentifier",
11802            "description": null,
11803            "args": [],
11804            "type": {
11805              "kind": "SCALAR",
11806              "name": "String",
11807              "ofType": null
11808            },
11809            "isDeprecated": false,
11810            "deprecationReason": null
11811          },
11812          {
11813            "name": "id",
11814            "description": null,
11815            "args": [],
11816            "type": {
11817              "kind": "NON_NULL",
11818              "name": null,
11819              "ofType": {
11820                "kind": "SCALAR",
11821                "name": "ID",
11822                "ofType": null
11823              }
11824            },
11825            "isDeprecated": false,
11826            "deprecationReason": null
11827          },
11828          {
11829            "name": "iosAppBuildCredentialsList",
11830            "description": null,
11831            "args": [],
11832            "type": {
11833              "kind": "NON_NULL",
11834              "name": null,
11835              "ofType": {
11836                "kind": "LIST",
11837                "name": null,
11838                "ofType": {
11839                  "kind": "NON_NULL",
11840                  "name": null,
11841                  "ofType": {
11842                    "kind": "OBJECT",
11843                    "name": "IosAppBuildCredentials",
11844                    "ofType": null
11845                  }
11846                }
11847              }
11848            },
11849            "isDeprecated": false,
11850            "deprecationReason": null
11851          },
11852          {
11853            "name": "serialNumber",
11854            "description": null,
11855            "args": [],
11856            "type": {
11857              "kind": "NON_NULL",
11858              "name": null,
11859              "ofType": {
11860                "kind": "SCALAR",
11861                "name": "String",
11862                "ofType": null
11863              }
11864            },
11865            "isDeprecated": false,
11866            "deprecationReason": null
11867          },
11868          {
11869            "name": "updatedAt",
11870            "description": null,
11871            "args": [],
11872            "type": {
11873              "kind": "NON_NULL",
11874              "name": null,
11875              "ofType": {
11876                "kind": "SCALAR",
11877                "name": "DateTime",
11878                "ofType": null
11879              }
11880            },
11881            "isDeprecated": false,
11882            "deprecationReason": null
11883          },
11884          {
11885            "name": "validityNotAfter",
11886            "description": null,
11887            "args": [],
11888            "type": {
11889              "kind": "NON_NULL",
11890              "name": null,
11891              "ofType": {
11892                "kind": "SCALAR",
11893                "name": "DateTime",
11894                "ofType": null
11895              }
11896            },
11897            "isDeprecated": false,
11898            "deprecationReason": null
11899          },
11900          {
11901            "name": "validityNotBefore",
11902            "description": null,
11903            "args": [],
11904            "type": {
11905              "kind": "NON_NULL",
11906              "name": null,
11907              "ofType": {
11908                "kind": "SCALAR",
11909                "name": "DateTime",
11910                "ofType": null
11911              }
11912            },
11913            "isDeprecated": false,
11914            "deprecationReason": null
11915          }
11916        ],
11917        "inputFields": null,
11918        "interfaces": [],
11919        "enumValues": null,
11920        "possibleTypes": null
11921      },
11922      {
11923        "kind": "INPUT_OBJECT",
11924        "name": "AppleDistributionCertificateInput",
11925        "description": null,
11926        "fields": null,
11927        "inputFields": [
11928          {
11929            "name": "appleTeamId",
11930            "description": null,
11931            "type": {
11932              "kind": "SCALAR",
11933              "name": "ID",
11934              "ofType": null
11935            },
11936            "defaultValue": null,
11937            "isDeprecated": false,
11938            "deprecationReason": null
11939          },
11940          {
11941            "name": "certP12",
11942            "description": null,
11943            "type": {
11944              "kind": "NON_NULL",
11945              "name": null,
11946              "ofType": {
11947                "kind": "SCALAR",
11948                "name": "String",
11949                "ofType": null
11950              }
11951            },
11952            "defaultValue": null,
11953            "isDeprecated": false,
11954            "deprecationReason": null
11955          },
11956          {
11957            "name": "certPassword",
11958            "description": null,
11959            "type": {
11960              "kind": "NON_NULL",
11961              "name": null,
11962              "ofType": {
11963                "kind": "SCALAR",
11964                "name": "String",
11965                "ofType": null
11966              }
11967            },
11968            "defaultValue": null,
11969            "isDeprecated": false,
11970            "deprecationReason": null
11971          },
11972          {
11973            "name": "certPrivateSigningKey",
11974            "description": null,
11975            "type": {
11976              "kind": "SCALAR",
11977              "name": "String",
11978              "ofType": null
11979            },
11980            "defaultValue": null,
11981            "isDeprecated": false,
11982            "deprecationReason": null
11983          },
11984          {
11985            "name": "developerPortalIdentifier",
11986            "description": null,
11987            "type": {
11988              "kind": "SCALAR",
11989              "name": "String",
11990              "ofType": null
11991            },
11992            "defaultValue": null,
11993            "isDeprecated": false,
11994            "deprecationReason": null
11995          }
11996        ],
11997        "interfaces": null,
11998        "enumValues": null,
11999        "possibleTypes": null
12000      },
12001      {
12002        "kind": "OBJECT",
12003        "name": "AppleDistributionCertificateMutation",
12004        "description": null,
12005        "fields": [
12006          {
12007            "name": "createAppleDistributionCertificate",
12008            "description": "Create a Distribution Certificate",
12009            "args": [
12010              {
12011                "name": "accountId",
12012                "description": null,
12013                "type": {
12014                  "kind": "NON_NULL",
12015                  "name": null,
12016                  "ofType": {
12017                    "kind": "SCALAR",
12018                    "name": "ID",
12019                    "ofType": null
12020                  }
12021                },
12022                "defaultValue": null,
12023                "isDeprecated": false,
12024                "deprecationReason": null
12025              },
12026              {
12027                "name": "appleDistributionCertificateInput",
12028                "description": null,
12029                "type": {
12030                  "kind": "NON_NULL",
12031                  "name": null,
12032                  "ofType": {
12033                    "kind": "INPUT_OBJECT",
12034                    "name": "AppleDistributionCertificateInput",
12035                    "ofType": null
12036                  }
12037                },
12038                "defaultValue": null,
12039                "isDeprecated": false,
12040                "deprecationReason": null
12041              }
12042            ],
12043            "type": {
12044              "kind": "OBJECT",
12045              "name": "AppleDistributionCertificate",
12046              "ofType": null
12047            },
12048            "isDeprecated": false,
12049            "deprecationReason": null
12050          },
12051          {
12052            "name": "deleteAppleDistributionCertificate",
12053            "description": "Delete a Distribution Certificate",
12054            "args": [
12055              {
12056                "name": "id",
12057                "description": null,
12058                "type": {
12059                  "kind": "NON_NULL",
12060                  "name": null,
12061                  "ofType": {
12062                    "kind": "SCALAR",
12063                    "name": "ID",
12064                    "ofType": null
12065                  }
12066                },
12067                "defaultValue": null,
12068                "isDeprecated": false,
12069                "deprecationReason": null
12070              }
12071            ],
12072            "type": {
12073              "kind": "NON_NULL",
12074              "name": null,
12075              "ofType": {
12076                "kind": "OBJECT",
12077                "name": "DeleteAppleDistributionCertificateResult",
12078                "ofType": null
12079              }
12080            },
12081            "isDeprecated": false,
12082            "deprecationReason": null
12083          }
12084        ],
12085        "inputFields": null,
12086        "interfaces": [],
12087        "enumValues": null,
12088        "possibleTypes": null
12089      },
12090      {
12091        "kind": "OBJECT",
12092        "name": "AppleProvisioningProfile",
12093        "description": null,
12094        "fields": [
12095          {
12096            "name": "account",
12097            "description": null,
12098            "args": [],
12099            "type": {
12100              "kind": "NON_NULL",
12101              "name": null,
12102              "ofType": {
12103                "kind": "OBJECT",
12104                "name": "Account",
12105                "ofType": null
12106              }
12107            },
12108            "isDeprecated": false,
12109            "deprecationReason": null
12110          },
12111          {
12112            "name": "appleAppIdentifier",
12113            "description": null,
12114            "args": [],
12115            "type": {
12116              "kind": "NON_NULL",
12117              "name": null,
12118              "ofType": {
12119                "kind": "OBJECT",
12120                "name": "AppleAppIdentifier",
12121                "ofType": null
12122              }
12123            },
12124            "isDeprecated": false,
12125            "deprecationReason": null
12126          },
12127          {
12128            "name": "appleDevices",
12129            "description": null,
12130            "args": [],
12131            "type": {
12132              "kind": "NON_NULL",
12133              "name": null,
12134              "ofType": {
12135                "kind": "LIST",
12136                "name": null,
12137                "ofType": {
12138                  "kind": "NON_NULL",
12139                  "name": null,
12140                  "ofType": {
12141                    "kind": "OBJECT",
12142                    "name": "AppleDevice",
12143                    "ofType": null
12144                  }
12145                }
12146              }
12147            },
12148            "isDeprecated": false,
12149            "deprecationReason": null
12150          },
12151          {
12152            "name": "appleTeam",
12153            "description": null,
12154            "args": [],
12155            "type": {
12156              "kind": "OBJECT",
12157              "name": "AppleTeam",
12158              "ofType": null
12159            },
12160            "isDeprecated": false,
12161            "deprecationReason": null
12162          },
12163          {
12164            "name": "appleUUID",
12165            "description": null,
12166            "args": [],
12167            "type": {
12168              "kind": "NON_NULL",
12169              "name": null,
12170              "ofType": {
12171                "kind": "SCALAR",
12172                "name": "String",
12173                "ofType": null
12174              }
12175            },
12176            "isDeprecated": false,
12177            "deprecationReason": null
12178          },
12179          {
12180            "name": "createdAt",
12181            "description": null,
12182            "args": [],
12183            "type": {
12184              "kind": "NON_NULL",
12185              "name": null,
12186              "ofType": {
12187                "kind": "SCALAR",
12188                "name": "DateTime",
12189                "ofType": null
12190              }
12191            },
12192            "isDeprecated": false,
12193            "deprecationReason": null
12194          },
12195          {
12196            "name": "developerPortalIdentifier",
12197            "description": null,
12198            "args": [],
12199            "type": {
12200              "kind": "SCALAR",
12201              "name": "String",
12202              "ofType": null
12203            },
12204            "isDeprecated": false,
12205            "deprecationReason": null
12206          },
12207          {
12208            "name": "expiration",
12209            "description": null,
12210            "args": [],
12211            "type": {
12212              "kind": "NON_NULL",
12213              "name": null,
12214              "ofType": {
12215                "kind": "SCALAR",
12216                "name": "DateTime",
12217                "ofType": null
12218              }
12219            },
12220            "isDeprecated": false,
12221            "deprecationReason": null
12222          },
12223          {
12224            "name": "id",
12225            "description": null,
12226            "args": [],
12227            "type": {
12228              "kind": "NON_NULL",
12229              "name": null,
12230              "ofType": {
12231                "kind": "SCALAR",
12232                "name": "ID",
12233                "ofType": null
12234              }
12235            },
12236            "isDeprecated": false,
12237            "deprecationReason": null
12238          },
12239          {
12240            "name": "provisioningProfile",
12241            "description": null,
12242            "args": [],
12243            "type": {
12244              "kind": "SCALAR",
12245              "name": "String",
12246              "ofType": null
12247            },
12248            "isDeprecated": false,
12249            "deprecationReason": null
12250          },
12251          {
12252            "name": "status",
12253            "description": null,
12254            "args": [],
12255            "type": {
12256              "kind": "NON_NULL",
12257              "name": null,
12258              "ofType": {
12259                "kind": "SCALAR",
12260                "name": "String",
12261                "ofType": null
12262              }
12263            },
12264            "isDeprecated": false,
12265            "deprecationReason": null
12266          },
12267          {
12268            "name": "updatedAt",
12269            "description": null,
12270            "args": [],
12271            "type": {
12272              "kind": "NON_NULL",
12273              "name": null,
12274              "ofType": {
12275                "kind": "SCALAR",
12276                "name": "DateTime",
12277                "ofType": null
12278              }
12279            },
12280            "isDeprecated": false,
12281            "deprecationReason": null
12282          }
12283        ],
12284        "inputFields": null,
12285        "interfaces": [],
12286        "enumValues": null,
12287        "possibleTypes": null
12288      },
12289      {
12290        "kind": "INPUT_OBJECT",
12291        "name": "AppleProvisioningProfileInput",
12292        "description": null,
12293        "fields": null,
12294        "inputFields": [
12295          {
12296            "name": "appleProvisioningProfile",
12297            "description": null,
12298            "type": {
12299              "kind": "NON_NULL",
12300              "name": null,
12301              "ofType": {
12302                "kind": "SCALAR",
12303                "name": "String",
12304                "ofType": null
12305              }
12306            },
12307            "defaultValue": null,
12308            "isDeprecated": false,
12309            "deprecationReason": null
12310          },
12311          {
12312            "name": "developerPortalIdentifier",
12313            "description": null,
12314            "type": {
12315              "kind": "SCALAR",
12316              "name": "String",
12317              "ofType": null
12318            },
12319            "defaultValue": null,
12320            "isDeprecated": false,
12321            "deprecationReason": null
12322          }
12323        ],
12324        "interfaces": null,
12325        "enumValues": null,
12326        "possibleTypes": null
12327      },
12328      {
12329        "kind": "OBJECT",
12330        "name": "AppleProvisioningProfileMutation",
12331        "description": null,
12332        "fields": [
12333          {
12334            "name": "createAppleProvisioningProfile",
12335            "description": "Create a Provisioning Profile",
12336            "args": [
12337              {
12338                "name": "accountId",
12339                "description": null,
12340                "type": {
12341                  "kind": "NON_NULL",
12342                  "name": null,
12343                  "ofType": {
12344                    "kind": "SCALAR",
12345                    "name": "ID",
12346                    "ofType": null
12347                  }
12348                },
12349                "defaultValue": null,
12350                "isDeprecated": false,
12351                "deprecationReason": null
12352              },
12353              {
12354                "name": "appleAppIdentifierId",
12355                "description": null,
12356                "type": {
12357                  "kind": "NON_NULL",
12358                  "name": null,
12359                  "ofType": {
12360                    "kind": "SCALAR",
12361                    "name": "ID",
12362                    "ofType": null
12363                  }
12364                },
12365                "defaultValue": null,
12366                "isDeprecated": false,
12367                "deprecationReason": null
12368              },
12369              {
12370                "name": "appleProvisioningProfileInput",
12371                "description": null,
12372                "type": {
12373                  "kind": "NON_NULL",
12374                  "name": null,
12375                  "ofType": {
12376                    "kind": "INPUT_OBJECT",
12377                    "name": "AppleProvisioningProfileInput",
12378                    "ofType": null
12379                  }
12380                },
12381                "defaultValue": null,
12382                "isDeprecated": false,
12383                "deprecationReason": null
12384              }
12385            ],
12386            "type": {
12387              "kind": "NON_NULL",
12388              "name": null,
12389              "ofType": {
12390                "kind": "OBJECT",
12391                "name": "AppleProvisioningProfile",
12392                "ofType": null
12393              }
12394            },
12395            "isDeprecated": false,
12396            "deprecationReason": null
12397          },
12398          {
12399            "name": "deleteAppleProvisioningProfile",
12400            "description": "Delete a Provisioning Profile",
12401            "args": [
12402              {
12403                "name": "id",
12404                "description": null,
12405                "type": {
12406                  "kind": "NON_NULL",
12407                  "name": null,
12408                  "ofType": {
12409                    "kind": "SCALAR",
12410                    "name": "ID",
12411                    "ofType": null
12412                  }
12413                },
12414                "defaultValue": null,
12415                "isDeprecated": false,
12416                "deprecationReason": null
12417              }
12418            ],
12419            "type": {
12420              "kind": "NON_NULL",
12421              "name": null,
12422              "ofType": {
12423                "kind": "OBJECT",
12424                "name": "DeleteAppleProvisioningProfileResult",
12425                "ofType": null
12426              }
12427            },
12428            "isDeprecated": false,
12429            "deprecationReason": null
12430          },
12431          {
12432            "name": "deleteAppleProvisioningProfiles",
12433            "description": "Delete Provisioning Profiles",
12434            "args": [
12435              {
12436                "name": "ids",
12437                "description": null,
12438                "type": {
12439                  "kind": "NON_NULL",
12440                  "name": null,
12441                  "ofType": {
12442                    "kind": "LIST",
12443                    "name": null,
12444                    "ofType": {
12445                      "kind": "NON_NULL",
12446                      "name": null,
12447                      "ofType": {
12448                        "kind": "SCALAR",
12449                        "name": "ID",
12450                        "ofType": null
12451                      }
12452                    }
12453                  }
12454                },
12455                "defaultValue": null,
12456                "isDeprecated": false,
12457                "deprecationReason": null
12458              }
12459            ],
12460            "type": {
12461              "kind": "NON_NULL",
12462              "name": null,
12463              "ofType": {
12464                "kind": "LIST",
12465                "name": null,
12466                "ofType": {
12467                  "kind": "NON_NULL",
12468                  "name": null,
12469                  "ofType": {
12470                    "kind": "OBJECT",
12471                    "name": "DeleteAppleProvisioningProfileResult",
12472                    "ofType": null
12473                  }
12474                }
12475              }
12476            },
12477            "isDeprecated": false,
12478            "deprecationReason": null
12479          },
12480          {
12481            "name": "updateAppleProvisioningProfile",
12482            "description": "Update a Provisioning Profile",
12483            "args": [
12484              {
12485                "name": "appleProvisioningProfileInput",
12486                "description": null,
12487                "type": {
12488                  "kind": "NON_NULL",
12489                  "name": null,
12490                  "ofType": {
12491                    "kind": "INPUT_OBJECT",
12492                    "name": "AppleProvisioningProfileInput",
12493                    "ofType": null
12494                  }
12495                },
12496                "defaultValue": null,
12497                "isDeprecated": false,
12498                "deprecationReason": null
12499              },
12500              {
12501                "name": "id",
12502                "description": null,
12503                "type": {
12504                  "kind": "NON_NULL",
12505                  "name": null,
12506                  "ofType": {
12507                    "kind": "SCALAR",
12508                    "name": "ID",
12509                    "ofType": null
12510                  }
12511                },
12512                "defaultValue": null,
12513                "isDeprecated": false,
12514                "deprecationReason": null
12515              }
12516            ],
12517            "type": {
12518              "kind": "NON_NULL",
12519              "name": null,
12520              "ofType": {
12521                "kind": "OBJECT",
12522                "name": "AppleProvisioningProfile",
12523                "ofType": null
12524              }
12525            },
12526            "isDeprecated": false,
12527            "deprecationReason": null
12528          }
12529        ],
12530        "inputFields": null,
12531        "interfaces": [],
12532        "enumValues": null,
12533        "possibleTypes": null
12534      },
12535      {
12536        "kind": "OBJECT",
12537        "name": "ApplePushKey",
12538        "description": null,
12539        "fields": [
12540          {
12541            "name": "account",
12542            "description": null,
12543            "args": [],
12544            "type": {
12545              "kind": "NON_NULL",
12546              "name": null,
12547              "ofType": {
12548                "kind": "OBJECT",
12549                "name": "Account",
12550                "ofType": null
12551              }
12552            },
12553            "isDeprecated": false,
12554            "deprecationReason": null
12555          },
12556          {
12557            "name": "appleTeam",
12558            "description": null,
12559            "args": [],
12560            "type": {
12561              "kind": "OBJECT",
12562              "name": "AppleTeam",
12563              "ofType": null
12564            },
12565            "isDeprecated": false,
12566            "deprecationReason": null
12567          },
12568          {
12569            "name": "createdAt",
12570            "description": null,
12571            "args": [],
12572            "type": {
12573              "kind": "NON_NULL",
12574              "name": null,
12575              "ofType": {
12576                "kind": "SCALAR",
12577                "name": "DateTime",
12578                "ofType": null
12579              }
12580            },
12581            "isDeprecated": false,
12582            "deprecationReason": null
12583          },
12584          {
12585            "name": "id",
12586            "description": null,
12587            "args": [],
12588            "type": {
12589              "kind": "NON_NULL",
12590              "name": null,
12591              "ofType": {
12592                "kind": "SCALAR",
12593                "name": "ID",
12594                "ofType": null
12595              }
12596            },
12597            "isDeprecated": false,
12598            "deprecationReason": null
12599          },
12600          {
12601            "name": "iosAppCredentialsList",
12602            "description": null,
12603            "args": [],
12604            "type": {
12605              "kind": "NON_NULL",
12606              "name": null,
12607              "ofType": {
12608                "kind": "LIST",
12609                "name": null,
12610                "ofType": {
12611                  "kind": "NON_NULL",
12612                  "name": null,
12613                  "ofType": {
12614                    "kind": "OBJECT",
12615                    "name": "IosAppCredentials",
12616                    "ofType": null
12617                  }
12618                }
12619              }
12620            },
12621            "isDeprecated": false,
12622            "deprecationReason": null
12623          },
12624          {
12625            "name": "keyIdentifier",
12626            "description": null,
12627            "args": [],
12628            "type": {
12629              "kind": "NON_NULL",
12630              "name": null,
12631              "ofType": {
12632                "kind": "SCALAR",
12633                "name": "String",
12634                "ofType": null
12635              }
12636            },
12637            "isDeprecated": false,
12638            "deprecationReason": null
12639          },
12640          {
12641            "name": "keyP8",
12642            "description": null,
12643            "args": [],
12644            "type": {
12645              "kind": "NON_NULL",
12646              "name": null,
12647              "ofType": {
12648                "kind": "SCALAR",
12649                "name": "String",
12650                "ofType": null
12651              }
12652            },
12653            "isDeprecated": false,
12654            "deprecationReason": null
12655          },
12656          {
12657            "name": "updatedAt",
12658            "description": null,
12659            "args": [],
12660            "type": {
12661              "kind": "NON_NULL",
12662              "name": null,
12663              "ofType": {
12664                "kind": "SCALAR",
12665                "name": "DateTime",
12666                "ofType": null
12667              }
12668            },
12669            "isDeprecated": false,
12670            "deprecationReason": null
12671          }
12672        ],
12673        "inputFields": null,
12674        "interfaces": [],
12675        "enumValues": null,
12676        "possibleTypes": null
12677      },
12678      {
12679        "kind": "INPUT_OBJECT",
12680        "name": "ApplePushKeyInput",
12681        "description": null,
12682        "fields": null,
12683        "inputFields": [
12684          {
12685            "name": "appleTeamId",
12686            "description": null,
12687            "type": {
12688              "kind": "NON_NULL",
12689              "name": null,
12690              "ofType": {
12691                "kind": "SCALAR",
12692                "name": "ID",
12693                "ofType": null
12694              }
12695            },
12696            "defaultValue": null,
12697            "isDeprecated": false,
12698            "deprecationReason": null
12699          },
12700          {
12701            "name": "keyIdentifier",
12702            "description": null,
12703            "type": {
12704              "kind": "NON_NULL",
12705              "name": null,
12706              "ofType": {
12707                "kind": "SCALAR",
12708                "name": "String",
12709                "ofType": null
12710              }
12711            },
12712            "defaultValue": null,
12713            "isDeprecated": false,
12714            "deprecationReason": null
12715          },
12716          {
12717            "name": "keyP8",
12718            "description": null,
12719            "type": {
12720              "kind": "NON_NULL",
12721              "name": null,
12722              "ofType": {
12723                "kind": "SCALAR",
12724                "name": "String",
12725                "ofType": null
12726              }
12727            },
12728            "defaultValue": null,
12729            "isDeprecated": false,
12730            "deprecationReason": null
12731          }
12732        ],
12733        "interfaces": null,
12734        "enumValues": null,
12735        "possibleTypes": null
12736      },
12737      {
12738        "kind": "OBJECT",
12739        "name": "ApplePushKeyMutation",
12740        "description": null,
12741        "fields": [
12742          {
12743            "name": "createApplePushKey",
12744            "description": "Create an Apple Push Notification key",
12745            "args": [
12746              {
12747                "name": "accountId",
12748                "description": null,
12749                "type": {
12750                  "kind": "NON_NULL",
12751                  "name": null,
12752                  "ofType": {
12753                    "kind": "SCALAR",
12754                    "name": "ID",
12755                    "ofType": null
12756                  }
12757                },
12758                "defaultValue": null,
12759                "isDeprecated": false,
12760                "deprecationReason": null
12761              },
12762              {
12763                "name": "applePushKeyInput",
12764                "description": null,
12765                "type": {
12766                  "kind": "NON_NULL",
12767                  "name": null,
12768                  "ofType": {
12769                    "kind": "INPUT_OBJECT",
12770                    "name": "ApplePushKeyInput",
12771                    "ofType": null
12772                  }
12773                },
12774                "defaultValue": null,
12775                "isDeprecated": false,
12776                "deprecationReason": null
12777              }
12778            ],
12779            "type": {
12780              "kind": "NON_NULL",
12781              "name": null,
12782              "ofType": {
12783                "kind": "OBJECT",
12784                "name": "ApplePushKey",
12785                "ofType": null
12786              }
12787            },
12788            "isDeprecated": false,
12789            "deprecationReason": null
12790          },
12791          {
12792            "name": "deleteApplePushKey",
12793            "description": "Delete an Apple Push Notification key",
12794            "args": [
12795              {
12796                "name": "id",
12797                "description": null,
12798                "type": {
12799                  "kind": "NON_NULL",
12800                  "name": null,
12801                  "ofType": {
12802                    "kind": "SCALAR",
12803                    "name": "ID",
12804                    "ofType": null
12805                  }
12806                },
12807                "defaultValue": null,
12808                "isDeprecated": false,
12809                "deprecationReason": null
12810              }
12811            ],
12812            "type": {
12813              "kind": "NON_NULL",
12814              "name": null,
12815              "ofType": {
12816                "kind": "OBJECT",
12817                "name": "deleteApplePushKeyResult",
12818                "ofType": null
12819              }
12820            },
12821            "isDeprecated": false,
12822            "deprecationReason": null
12823          }
12824        ],
12825        "inputFields": null,
12826        "interfaces": [],
12827        "enumValues": null,
12828        "possibleTypes": null
12829      },
12830      {
12831        "kind": "OBJECT",
12832        "name": "AppleTeam",
12833        "description": null,
12834        "fields": [
12835          {
12836            "name": "account",
12837            "description": null,
12838            "args": [],
12839            "type": {
12840              "kind": "NON_NULL",
12841              "name": null,
12842              "ofType": {
12843                "kind": "OBJECT",
12844                "name": "Account",
12845                "ofType": null
12846              }
12847            },
12848            "isDeprecated": false,
12849            "deprecationReason": null
12850          },
12851          {
12852            "name": "appleAppIdentifiers",
12853            "description": null,
12854            "args": [
12855              {
12856                "name": "bundleIdentifier",
12857                "description": null,
12858                "type": {
12859                  "kind": "SCALAR",
12860                  "name": "String",
12861                  "ofType": null
12862                },
12863                "defaultValue": null,
12864                "isDeprecated": false,
12865                "deprecationReason": null
12866              }
12867            ],
12868            "type": {
12869              "kind": "NON_NULL",
12870              "name": null,
12871              "ofType": {
12872                "kind": "LIST",
12873                "name": null,
12874                "ofType": {
12875                  "kind": "NON_NULL",
12876                  "name": null,
12877                  "ofType": {
12878                    "kind": "OBJECT",
12879                    "name": "AppleAppIdentifier",
12880                    "ofType": null
12881                  }
12882                }
12883              }
12884            },
12885            "isDeprecated": false,
12886            "deprecationReason": null
12887          },
12888          {
12889            "name": "appleDevices",
12890            "description": null,
12891            "args": [
12892              {
12893                "name": "limit",
12894                "description": null,
12895                "type": {
12896                  "kind": "SCALAR",
12897                  "name": "Int",
12898                  "ofType": null
12899                },
12900                "defaultValue": null,
12901                "isDeprecated": false,
12902                "deprecationReason": null
12903              },
12904              {
12905                "name": "offset",
12906                "description": null,
12907                "type": {
12908                  "kind": "SCALAR",
12909                  "name": "Int",
12910                  "ofType": null
12911                },
12912                "defaultValue": null,
12913                "isDeprecated": false,
12914                "deprecationReason": null
12915              }
12916            ],
12917            "type": {
12918              "kind": "NON_NULL",
12919              "name": null,
12920              "ofType": {
12921                "kind": "LIST",
12922                "name": null,
12923                "ofType": {
12924                  "kind": "NON_NULL",
12925                  "name": null,
12926                  "ofType": {
12927                    "kind": "OBJECT",
12928                    "name": "AppleDevice",
12929                    "ofType": null
12930                  }
12931                }
12932              }
12933            },
12934            "isDeprecated": false,
12935            "deprecationReason": null
12936          },
12937          {
12938            "name": "appleDistributionCertificates",
12939            "description": null,
12940            "args": [],
12941            "type": {
12942              "kind": "NON_NULL",
12943              "name": null,
12944              "ofType": {
12945                "kind": "LIST",
12946                "name": null,
12947                "ofType": {
12948                  "kind": "NON_NULL",
12949                  "name": null,
12950                  "ofType": {
12951                    "kind": "OBJECT",
12952                    "name": "AppleDistributionCertificate",
12953                    "ofType": null
12954                  }
12955                }
12956              }
12957            },
12958            "isDeprecated": false,
12959            "deprecationReason": null
12960          },
12961          {
12962            "name": "appleProvisioningProfiles",
12963            "description": null,
12964            "args": [
12965              {
12966                "name": "appleAppIdentifierId",
12967                "description": null,
12968                "type": {
12969                  "kind": "SCALAR",
12970                  "name": "ID",
12971                  "ofType": null
12972                },
12973                "defaultValue": null,
12974                "isDeprecated": false,
12975                "deprecationReason": null
12976              }
12977            ],
12978            "type": {
12979              "kind": "NON_NULL",
12980              "name": null,
12981              "ofType": {
12982                "kind": "LIST",
12983                "name": null,
12984                "ofType": {
12985                  "kind": "NON_NULL",
12986                  "name": null,
12987                  "ofType": {
12988                    "kind": "OBJECT",
12989                    "name": "AppleProvisioningProfile",
12990                    "ofType": null
12991                  }
12992                }
12993              }
12994            },
12995            "isDeprecated": false,
12996            "deprecationReason": null
12997          },
12998          {
12999            "name": "applePushKeys",
13000            "description": null,
13001            "args": [],
13002            "type": {
13003              "kind": "NON_NULL",
13004              "name": null,
13005              "ofType": {
13006                "kind": "LIST",
13007                "name": null,
13008                "ofType": {
13009                  "kind": "NON_NULL",
13010                  "name": null,
13011                  "ofType": {
13012                    "kind": "OBJECT",
13013                    "name": "ApplePushKey",
13014                    "ofType": null
13015                  }
13016                }
13017              }
13018            },
13019            "isDeprecated": false,
13020            "deprecationReason": null
13021          },
13022          {
13023            "name": "appleTeamIdentifier",
13024            "description": null,
13025            "args": [],
13026            "type": {
13027              "kind": "NON_NULL",
13028              "name": null,
13029              "ofType": {
13030                "kind": "SCALAR",
13031                "name": "String",
13032                "ofType": null
13033              }
13034            },
13035            "isDeprecated": false,
13036            "deprecationReason": null
13037          },
13038          {
13039            "name": "appleTeamName",
13040            "description": null,
13041            "args": [],
13042            "type": {
13043              "kind": "SCALAR",
13044              "name": "String",
13045              "ofType": null
13046            },
13047            "isDeprecated": false,
13048            "deprecationReason": null
13049          },
13050          {
13051            "name": "id",
13052            "description": null,
13053            "args": [],
13054            "type": {
13055              "kind": "NON_NULL",
13056              "name": null,
13057              "ofType": {
13058                "kind": "SCALAR",
13059                "name": "ID",
13060                "ofType": null
13061              }
13062            },
13063            "isDeprecated": false,
13064            "deprecationReason": null
13065          }
13066        ],
13067        "inputFields": null,
13068        "interfaces": [],
13069        "enumValues": null,
13070        "possibleTypes": null
13071      },
13072      {
13073        "kind": "INPUT_OBJECT",
13074        "name": "AppleTeamInput",
13075        "description": null,
13076        "fields": null,
13077        "inputFields": [
13078          {
13079            "name": "appleTeamIdentifier",
13080            "description": null,
13081            "type": {
13082              "kind": "NON_NULL",
13083              "name": null,
13084              "ofType": {
13085                "kind": "SCALAR",
13086                "name": "String",
13087                "ofType": null
13088              }
13089            },
13090            "defaultValue": null,
13091            "isDeprecated": false,
13092            "deprecationReason": null
13093          },
13094          {
13095            "name": "appleTeamName",
13096            "description": null,
13097            "type": {
13098              "kind": "SCALAR",
13099              "name": "String",
13100              "ofType": null
13101            },
13102            "defaultValue": null,
13103            "isDeprecated": false,
13104            "deprecationReason": null
13105          }
13106        ],
13107        "interfaces": null,
13108        "enumValues": null,
13109        "possibleTypes": null
13110      },
13111      {
13112        "kind": "OBJECT",
13113        "name": "AppleTeamMutation",
13114        "description": null,
13115        "fields": [
13116          {
13117            "name": "createAppleTeam",
13118            "description": "Create an Apple Team",
13119            "args": [
13120              {
13121                "name": "accountId",
13122                "description": null,
13123                "type": {
13124                  "kind": "NON_NULL",
13125                  "name": null,
13126                  "ofType": {
13127                    "kind": "SCALAR",
13128                    "name": "ID",
13129                    "ofType": null
13130                  }
13131                },
13132                "defaultValue": null,
13133                "isDeprecated": false,
13134                "deprecationReason": null
13135              },
13136              {
13137                "name": "appleTeamInput",
13138                "description": null,
13139                "type": {
13140                  "kind": "NON_NULL",
13141                  "name": null,
13142                  "ofType": {
13143                    "kind": "INPUT_OBJECT",
13144                    "name": "AppleTeamInput",
13145                    "ofType": null
13146                  }
13147                },
13148                "defaultValue": null,
13149                "isDeprecated": false,
13150                "deprecationReason": null
13151              }
13152            ],
13153            "type": {
13154              "kind": "NON_NULL",
13155              "name": null,
13156              "ofType": {
13157                "kind": "OBJECT",
13158                "name": "AppleTeam",
13159                "ofType": null
13160              }
13161            },
13162            "isDeprecated": false,
13163            "deprecationReason": null
13164          }
13165        ],
13166        "inputFields": null,
13167        "interfaces": [],
13168        "enumValues": null,
13169        "possibleTypes": null
13170      },
13171      {
13172        "kind": "OBJECT",
13173        "name": "AppleTeamQuery",
13174        "description": null,
13175        "fields": [
13176          {
13177            "name": "byAppleTeamIdentifier",
13178            "description": null,
13179            "args": [
13180              {
13181                "name": "accountId",
13182                "description": null,
13183                "type": {
13184                  "kind": "NON_NULL",
13185                  "name": null,
13186                  "ofType": {
13187                    "kind": "SCALAR",
13188                    "name": "ID",
13189                    "ofType": null
13190                  }
13191                },
13192                "defaultValue": null,
13193                "isDeprecated": false,
13194                "deprecationReason": null
13195              },
13196              {
13197                "name": "identifier",
13198                "description": null,
13199                "type": {
13200                  "kind": "NON_NULL",
13201                  "name": null,
13202                  "ofType": {
13203                    "kind": "SCALAR",
13204                    "name": "String",
13205                    "ofType": null
13206                  }
13207                },
13208                "defaultValue": null,
13209                "isDeprecated": false,
13210                "deprecationReason": null
13211              }
13212            ],
13213            "type": {
13214              "kind": "OBJECT",
13215              "name": "AppleTeam",
13216              "ofType": null
13217            },
13218            "isDeprecated": false,
13219            "deprecationReason": null
13220          }
13221        ],
13222        "inputFields": null,
13223        "interfaces": [],
13224        "enumValues": null,
13225        "possibleTypes": null
13226      },
13227      {
13228        "kind": "ENUM",
13229        "name": "AppsFilter",
13230        "description": null,
13231        "fields": null,
13232        "inputFields": null,
13233        "interfaces": null,
13234        "enumValues": [
13235          {
13236            "name": "FEATURED",
13237            "description": "Featured Projects",
13238            "isDeprecated": false,
13239            "deprecationReason": null
13240          },
13241          {
13242            "name": "NEW",
13243            "description": "New Projects",
13244            "isDeprecated": false,
13245            "deprecationReason": null
13246          }
13247        ],
13248        "possibleTypes": null
13249      },
13250      {
13251        "kind": "INPUT_OBJECT",
13252        "name": "AscApiKeyInput",
13253        "description": null,
13254        "fields": null,
13255        "inputFields": [
13256          {
13257            "name": "issuerIdentifier",
13258            "description": null,
13259            "type": {
13260              "kind": "NON_NULL",
13261              "name": null,
13262              "ofType": {
13263                "kind": "SCALAR",
13264                "name": "String",
13265                "ofType": null
13266              }
13267            },
13268            "defaultValue": null,
13269            "isDeprecated": false,
13270            "deprecationReason": null
13271          },
13272          {
13273            "name": "keyIdentifier",
13274            "description": null,
13275            "type": {
13276              "kind": "NON_NULL",
13277              "name": null,
13278              "ofType": {
13279                "kind": "SCALAR",
13280                "name": "String",
13281                "ofType": null
13282              }
13283            },
13284            "defaultValue": null,
13285            "isDeprecated": false,
13286            "deprecationReason": null
13287          },
13288          {
13289            "name": "keyP8",
13290            "description": null,
13291            "type": {
13292              "kind": "NON_NULL",
13293              "name": null,
13294              "ofType": {
13295                "kind": "SCALAR",
13296                "name": "String",
13297                "ofType": null
13298              }
13299            },
13300            "defaultValue": null,
13301            "isDeprecated": false,
13302            "deprecationReason": null
13303          }
13304        ],
13305        "interfaces": null,
13306        "enumValues": null,
13307        "possibleTypes": null
13308      },
13309      {
13310        "kind": "OBJECT",
13311        "name": "AssetMetadataResult",
13312        "description": null,
13313        "fields": [
13314          {
13315            "name": "status",
13316            "description": null,
13317            "args": [],
13318            "type": {
13319              "kind": "NON_NULL",
13320              "name": null,
13321              "ofType": {
13322                "kind": "ENUM",
13323                "name": "AssetMetadataStatus",
13324                "ofType": null
13325              }
13326            },
13327            "isDeprecated": false,
13328            "deprecationReason": null
13329          },
13330          {
13331            "name": "storageKey",
13332            "description": null,
13333            "args": [],
13334            "type": {
13335              "kind": "NON_NULL",
13336              "name": null,
13337              "ofType": {
13338                "kind": "SCALAR",
13339                "name": "String",
13340                "ofType": null
13341              }
13342            },
13343            "isDeprecated": false,
13344            "deprecationReason": null
13345          }
13346        ],
13347        "inputFields": null,
13348        "interfaces": [],
13349        "enumValues": null,
13350        "possibleTypes": null
13351      },
13352      {
13353        "kind": "ENUM",
13354        "name": "AssetMetadataStatus",
13355        "description": null,
13356        "fields": null,
13357        "inputFields": null,
13358        "interfaces": null,
13359        "enumValues": [
13360          {
13361            "name": "DOES_NOT_EXIST",
13362            "description": null,
13363            "isDeprecated": false,
13364            "deprecationReason": null
13365          },
13366          {
13367            "name": "EXISTS",
13368            "description": null,
13369            "isDeprecated": false,
13370            "deprecationReason": null
13371          }
13372        ],
13373        "possibleTypes": null
13374      },
13375      {
13376        "kind": "OBJECT",
13377        "name": "AssetMutation",
13378        "description": null,
13379        "fields": [
13380          {
13381            "name": "getSignedAssetUploadSpecifications",
13382            "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.",
13383            "args": [
13384              {
13385                "name": "assetContentTypes",
13386                "description": "max 1400",
13387                "type": {
13388                  "kind": "NON_NULL",
13389                  "name": null,
13390                  "ofType": {
13391                    "kind": "LIST",
13392                    "name": null,
13393                    "ofType": {
13394                      "kind": "SCALAR",
13395                      "name": "String",
13396                      "ofType": null
13397                    }
13398                  }
13399                },
13400                "defaultValue": null,
13401                "isDeprecated": false,
13402                "deprecationReason": null
13403              }
13404            ],
13405            "type": {
13406              "kind": "NON_NULL",
13407              "name": null,
13408              "ofType": {
13409                "kind": "OBJECT",
13410                "name": "GetSignedAssetUploadSpecificationsResult",
13411                "ofType": null
13412              }
13413            },
13414            "isDeprecated": false,
13415            "deprecationReason": null
13416          }
13417        ],
13418        "inputFields": null,
13419        "interfaces": [],
13420        "enumValues": null,
13421        "possibleTypes": null
13422      },
13423      {
13424        "kind": "OBJECT",
13425        "name": "AssetQuery",
13426        "description": "Check to see if assets with given storageKeys exist",
13427        "fields": [
13428          {
13429            "name": "metadata",
13430            "description": null,
13431            "args": [
13432              {
13433                "name": "storageKeys",
13434                "description": null,
13435                "type": {
13436                  "kind": "NON_NULL",
13437                  "name": null,
13438                  "ofType": {
13439                    "kind": "LIST",
13440                    "name": null,
13441                    "ofType": {
13442                      "kind": "NON_NULL",
13443                      "name": null,
13444                      "ofType": {
13445                        "kind": "SCALAR",
13446                        "name": "String",
13447                        "ofType": null
13448                      }
13449                    }
13450                  }
13451                },
13452                "defaultValue": null,
13453                "isDeprecated": false,
13454                "deprecationReason": null
13455              }
13456            ],
13457            "type": {
13458              "kind": "NON_NULL",
13459              "name": null,
13460              "ofType": {
13461                "kind": "LIST",
13462                "name": null,
13463                "ofType": {
13464                  "kind": "NON_NULL",
13465                  "name": null,
13466                  "ofType": {
13467                    "kind": "OBJECT",
13468                    "name": "AssetMetadataResult",
13469                    "ofType": null
13470                  }
13471                }
13472              }
13473            },
13474            "isDeprecated": false,
13475            "deprecationReason": null
13476          }
13477        ],
13478        "inputFields": null,
13479        "interfaces": [],
13480        "enumValues": null,
13481        "possibleTypes": null
13482      },
13483      {
13484        "kind": "ENUM",
13485        "name": "AuthProtocolType",
13486        "description": null,
13487        "fields": null,
13488        "inputFields": null,
13489        "interfaces": null,
13490        "enumValues": [
13491          {
13492            "name": "OIDC",
13493            "description": null,
13494            "isDeprecated": false,
13495            "deprecationReason": null
13496          }
13497        ],
13498        "possibleTypes": null
13499      },
13500      {
13501        "kind": "OBJECT",
13502        "name": "BackgroundJobReceipt",
13503        "description": null,
13504        "fields": [
13505          {
13506            "name": "account",
13507            "description": null,
13508            "args": [],
13509            "type": {
13510              "kind": "NON_NULL",
13511              "name": null,
13512              "ofType": {
13513                "kind": "OBJECT",
13514                "name": "Account",
13515                "ofType": null
13516              }
13517            },
13518            "isDeprecated": false,
13519            "deprecationReason": null
13520          },
13521          {
13522            "name": "createdAt",
13523            "description": null,
13524            "args": [],
13525            "type": {
13526              "kind": "NON_NULL",
13527              "name": null,
13528              "ofType": {
13529                "kind": "SCALAR",
13530                "name": "DateTime",
13531                "ofType": null
13532              }
13533            },
13534            "isDeprecated": false,
13535            "deprecationReason": null
13536          },
13537          {
13538            "name": "errorCode",
13539            "description": null,
13540            "args": [],
13541            "type": {
13542              "kind": "SCALAR",
13543              "name": "String",
13544              "ofType": null
13545            },
13546            "isDeprecated": false,
13547            "deprecationReason": null
13548          },
13549          {
13550            "name": "errorMessage",
13551            "description": null,
13552            "args": [],
13553            "type": {
13554              "kind": "SCALAR",
13555              "name": "String",
13556              "ofType": null
13557            },
13558            "isDeprecated": false,
13559            "deprecationReason": null
13560          },
13561          {
13562            "name": "id",
13563            "description": null,
13564            "args": [],
13565            "type": {
13566              "kind": "NON_NULL",
13567              "name": null,
13568              "ofType": {
13569                "kind": "SCALAR",
13570                "name": "ID",
13571                "ofType": null
13572              }
13573            },
13574            "isDeprecated": false,
13575            "deprecationReason": null
13576          },
13577          {
13578            "name": "resultId",
13579            "description": null,
13580            "args": [],
13581            "type": {
13582              "kind": "SCALAR",
13583              "name": "ID",
13584              "ofType": null
13585            },
13586            "isDeprecated": false,
13587            "deprecationReason": null
13588          },
13589          {
13590            "name": "resultType",
13591            "description": null,
13592            "args": [],
13593            "type": {
13594              "kind": "NON_NULL",
13595              "name": null,
13596              "ofType": {
13597                "kind": "ENUM",
13598                "name": "BackgroundJobResultType",
13599                "ofType": null
13600              }
13601            },
13602            "isDeprecated": false,
13603            "deprecationReason": null
13604          },
13605          {
13606            "name": "state",
13607            "description": null,
13608            "args": [],
13609            "type": {
13610              "kind": "NON_NULL",
13611              "name": null,
13612              "ofType": {
13613                "kind": "ENUM",
13614                "name": "BackgroundJobState",
13615                "ofType": null
13616              }
13617            },
13618            "isDeprecated": false,
13619            "deprecationReason": null
13620          },
13621          {
13622            "name": "tries",
13623            "description": null,
13624            "args": [],
13625            "type": {
13626              "kind": "NON_NULL",
13627              "name": null,
13628              "ofType": {
13629                "kind": "SCALAR",
13630                "name": "Int",
13631                "ofType": null
13632              }
13633            },
13634            "isDeprecated": false,
13635            "deprecationReason": null
13636          },
13637          {
13638            "name": "updatedAt",
13639            "description": null,
13640            "args": [],
13641            "type": {
13642              "kind": "NON_NULL",
13643              "name": null,
13644              "ofType": {
13645                "kind": "SCALAR",
13646                "name": "DateTime",
13647                "ofType": null
13648              }
13649            },
13650            "isDeprecated": false,
13651            "deprecationReason": null
13652          },
13653          {
13654            "name": "willRetry",
13655            "description": null,
13656            "args": [],
13657            "type": {
13658              "kind": "NON_NULL",
13659              "name": null,
13660              "ofType": {
13661                "kind": "SCALAR",
13662                "name": "Boolean",
13663                "ofType": null
13664              }
13665            },
13666            "isDeprecated": false,
13667            "deprecationReason": null
13668          }
13669        ],
13670        "inputFields": null,
13671        "interfaces": [],
13672        "enumValues": null,
13673        "possibleTypes": null
13674      },
13675      {
13676        "kind": "OBJECT",
13677        "name": "BackgroundJobReceiptQuery",
13678        "description": null,
13679        "fields": [
13680          {
13681            "name": "byId",
13682            "description": "Look up background job receipt by ID",
13683            "args": [
13684              {
13685                "name": "id",
13686                "description": null,
13687                "type": {
13688                  "kind": "NON_NULL",
13689                  "name": null,
13690                  "ofType": {
13691                    "kind": "SCALAR",
13692                    "name": "ID",
13693                    "ofType": null
13694                  }
13695                },
13696                "defaultValue": null,
13697                "isDeprecated": false,
13698                "deprecationReason": null
13699              }
13700            ],
13701            "type": {
13702              "kind": "NON_NULL",
13703              "name": null,
13704              "ofType": {
13705                "kind": "OBJECT",
13706                "name": "BackgroundJobReceipt",
13707                "ofType": null
13708              }
13709            },
13710            "isDeprecated": false,
13711            "deprecationReason": null
13712          }
13713        ],
13714        "inputFields": null,
13715        "interfaces": [],
13716        "enumValues": null,
13717        "possibleTypes": null
13718      },
13719      {
13720        "kind": "ENUM",
13721        "name": "BackgroundJobResultType",
13722        "description": null,
13723        "fields": null,
13724        "inputFields": null,
13725        "interfaces": null,
13726        "enumValues": [
13727          {
13728            "name": "GITHUB_BUILD",
13729            "description": null,
13730            "isDeprecated": false,
13731            "deprecationReason": null
13732          }
13733        ],
13734        "possibleTypes": null
13735      },
13736      {
13737        "kind": "ENUM",
13738        "name": "BackgroundJobState",
13739        "description": null,
13740        "fields": null,
13741        "inputFields": null,
13742        "interfaces": null,
13743        "enumValues": [
13744          {
13745            "name": "FAILURE",
13746            "description": null,
13747            "isDeprecated": false,
13748            "deprecationReason": null
13749          },
13750          {
13751            "name": "IN_PROGRESS",
13752            "description": null,
13753            "isDeprecated": false,
13754            "deprecationReason": null
13755          },
13756          {
13757            "name": "QUEUED",
13758            "description": null,
13759            "isDeprecated": false,
13760            "deprecationReason": null
13761          },
13762          {
13763            "name": "SUCCESS",
13764            "description": null,
13765            "isDeprecated": false,
13766            "deprecationReason": null
13767          }
13768        ],
13769        "possibleTypes": null
13770      },
13771      {
13772        "kind": "OBJECT",
13773        "name": "Billing",
13774        "description": null,
13775        "fields": [
13776          {
13777            "name": "charges",
13778            "description": "History of invoices",
13779            "args": [],
13780            "type": {
13781              "kind": "LIST",
13782              "name": null,
13783              "ofType": {
13784                "kind": "OBJECT",
13785                "name": "Charge",
13786                "ofType": null
13787              }
13788            },
13789            "isDeprecated": false,
13790            "deprecationReason": null
13791          },
13792          {
13793            "name": "id",
13794            "description": null,
13795            "args": [],
13796            "type": {
13797              "kind": "NON_NULL",
13798              "name": null,
13799              "ofType": {
13800                "kind": "SCALAR",
13801                "name": "ID",
13802                "ofType": null
13803              }
13804            },
13805            "isDeprecated": false,
13806            "deprecationReason": null
13807          },
13808          {
13809            "name": "payment",
13810            "description": null,
13811            "args": [],
13812            "type": {
13813              "kind": "OBJECT",
13814              "name": "PaymentDetails",
13815              "ofType": null
13816            },
13817            "isDeprecated": true,
13818            "deprecationReason": "No longer used"
13819          },
13820          {
13821            "name": "subscription",
13822            "description": null,
13823            "args": [],
13824            "type": {
13825              "kind": "OBJECT",
13826              "name": "SubscriptionDetails",
13827              "ofType": null
13828            },
13829            "isDeprecated": false,
13830            "deprecationReason": null
13831          }
13832        ],
13833        "inputFields": null,
13834        "interfaces": [],
13835        "enumValues": null,
13836        "possibleTypes": null
13837      },
13838      {
13839        "kind": "OBJECT",
13840        "name": "BillingPeriod",
13841        "description": null,
13842        "fields": [
13843          {
13844            "name": "anchor",
13845            "description": null,
13846            "args": [],
13847            "type": {
13848              "kind": "NON_NULL",
13849              "name": null,
13850              "ofType": {
13851                "kind": "SCALAR",
13852                "name": "DateTime",
13853                "ofType": null
13854              }
13855            },
13856            "isDeprecated": false,
13857            "deprecationReason": null
13858          },
13859          {
13860            "name": "end",
13861            "description": null,
13862            "args": [],
13863            "type": {
13864              "kind": "NON_NULL",
13865              "name": null,
13866              "ofType": {
13867                "kind": "SCALAR",
13868                "name": "DateTime",
13869                "ofType": null
13870              }
13871            },
13872            "isDeprecated": false,
13873            "deprecationReason": null
13874          },
13875          {
13876            "name": "id",
13877            "description": null,
13878            "args": [],
13879            "type": {
13880              "kind": "NON_NULL",
13881              "name": null,
13882              "ofType": {
13883                "kind": "SCALAR",
13884                "name": "ID",
13885                "ofType": null
13886              }
13887            },
13888            "isDeprecated": false,
13889            "deprecationReason": null
13890          },
13891          {
13892            "name": "start",
13893            "description": null,
13894            "args": [],
13895            "type": {
13896              "kind": "NON_NULL",
13897              "name": null,
13898              "ofType": {
13899                "kind": "SCALAR",
13900                "name": "DateTime",
13901                "ofType": null
13902              }
13903            },
13904            "isDeprecated": false,
13905            "deprecationReason": null
13906          }
13907        ],
13908        "inputFields": null,
13909        "interfaces": [],
13910        "enumValues": null,
13911        "possibleTypes": null
13912      },
13913      {
13914        "kind": "SCALAR",
13915        "name": "Boolean",
13916        "description": "The `Boolean` scalar type represents `true` or `false`.",
13917        "fields": null,
13918        "inputFields": null,
13919        "interfaces": null,
13920        "enumValues": null,
13921        "possibleTypes": null
13922      },
13923      {
13924        "kind": "OBJECT",
13925        "name": "Build",
13926        "description": "Represents an EAS Build",
13927        "fields": [
13928          {
13929            "name": "activityTimestamp",
13930            "description": null,
13931            "args": [],
13932            "type": {
13933              "kind": "NON_NULL",
13934              "name": null,
13935              "ofType": {
13936                "kind": "SCALAR",
13937                "name": "DateTime",
13938                "ofType": null
13939              }
13940            },
13941            "isDeprecated": false,
13942            "deprecationReason": null
13943          },
13944          {
13945            "name": "actor",
13946            "description": null,
13947            "args": [],
13948            "type": {
13949              "kind": "INTERFACE",
13950              "name": "Actor",
13951              "ofType": null
13952            },
13953            "isDeprecated": false,
13954            "deprecationReason": null
13955          },
13956          {
13957            "name": "app",
13958            "description": null,
13959            "args": [],
13960            "type": {
13961              "kind": "NON_NULL",
13962              "name": null,
13963              "ofType": {
13964                "kind": "OBJECT",
13965                "name": "App",
13966                "ofType": null
13967              }
13968            },
13969            "isDeprecated": false,
13970            "deprecationReason": null
13971          },
13972          {
13973            "name": "appBuildVersion",
13974            "description": null,
13975            "args": [],
13976            "type": {
13977              "kind": "SCALAR",
13978              "name": "String",
13979              "ofType": null
13980            },
13981            "isDeprecated": false,
13982            "deprecationReason": null
13983          },
13984          {
13985            "name": "appVersion",
13986            "description": null,
13987            "args": [],
13988            "type": {
13989              "kind": "SCALAR",
13990              "name": "String",
13991              "ofType": null
13992            },
13993            "isDeprecated": false,
13994            "deprecationReason": null
13995          },
13996          {
13997            "name": "artifacts",
13998            "description": null,
13999            "args": [],
14000            "type": {
14001              "kind": "OBJECT",
14002              "name": "BuildArtifacts",
14003              "ofType": null
14004            },
14005            "isDeprecated": false,
14006            "deprecationReason": null
14007          },
14008          {
14009            "name": "buildMode",
14010            "description": null,
14011            "args": [],
14012            "type": {
14013              "kind": "ENUM",
14014              "name": "BuildMode",
14015              "ofType": null
14016            },
14017            "isDeprecated": false,
14018            "deprecationReason": null
14019          },
14020          {
14021            "name": "buildProfile",
14022            "description": null,
14023            "args": [],
14024            "type": {
14025              "kind": "SCALAR",
14026              "name": "String",
14027              "ofType": null
14028            },
14029            "isDeprecated": false,
14030            "deprecationReason": null
14031          },
14032          {
14033            "name": "canRetry",
14034            "description": null,
14035            "args": [
14036              {
14037                "name": "newMode",
14038                "description": null,
14039                "type": {
14040                  "kind": "ENUM",
14041                  "name": "BuildMode",
14042                  "ofType": null
14043                },
14044                "defaultValue": null,
14045                "isDeprecated": false,
14046                "deprecationReason": null
14047              }
14048            ],
14049            "type": {
14050              "kind": "NON_NULL",
14051              "name": null,
14052              "ofType": {
14053                "kind": "SCALAR",
14054                "name": "Boolean",
14055                "ofType": null
14056              }
14057            },
14058            "isDeprecated": false,
14059            "deprecationReason": null
14060          },
14061          {
14062            "name": "cancelingActor",
14063            "description": null,
14064            "args": [],
14065            "type": {
14066              "kind": "INTERFACE",
14067              "name": "Actor",
14068              "ofType": null
14069            },
14070            "isDeprecated": false,
14071            "deprecationReason": null
14072          },
14073          {
14074            "name": "channel",
14075            "description": null,
14076            "args": [],
14077            "type": {
14078              "kind": "SCALAR",
14079              "name": "String",
14080              "ofType": null
14081            },
14082            "isDeprecated": false,
14083            "deprecationReason": null
14084          },
14085          {
14086            "name": "childBuild",
14087            "description": null,
14088            "args": [],
14089            "type": {
14090              "kind": "OBJECT",
14091              "name": "Build",
14092              "ofType": null
14093            },
14094            "isDeprecated": false,
14095            "deprecationReason": null
14096          },
14097          {
14098            "name": "completedAt",
14099            "description": null,
14100            "args": [],
14101            "type": {
14102              "kind": "SCALAR",
14103              "name": "DateTime",
14104              "ofType": null
14105            },
14106            "isDeprecated": false,
14107            "deprecationReason": null
14108          },
14109          {
14110            "name": "createdAt",
14111            "description": null,
14112            "args": [],
14113            "type": {
14114              "kind": "NON_NULL",
14115              "name": null,
14116              "ofType": {
14117                "kind": "SCALAR",
14118                "name": "DateTime",
14119                "ofType": null
14120              }
14121            },
14122            "isDeprecated": false,
14123            "deprecationReason": null
14124          },
14125          {
14126            "name": "customWorkflowName",
14127            "description": null,
14128            "args": [],
14129            "type": {
14130              "kind": "SCALAR",
14131              "name": "String",
14132              "ofType": null
14133            },
14134            "isDeprecated": false,
14135            "deprecationReason": null
14136          },
14137          {
14138            "name": "distribution",
14139            "description": null,
14140            "args": [],
14141            "type": {
14142              "kind": "ENUM",
14143              "name": "DistributionType",
14144              "ofType": null
14145            },
14146            "isDeprecated": false,
14147            "deprecationReason": null
14148          },
14149          {
14150            "name": "enqueuedAt",
14151            "description": null,
14152            "args": [],
14153            "type": {
14154              "kind": "SCALAR",
14155              "name": "DateTime",
14156              "ofType": null
14157            },
14158            "isDeprecated": false,
14159            "deprecationReason": null
14160          },
14161          {
14162            "name": "error",
14163            "description": null,
14164            "args": [],
14165            "type": {
14166              "kind": "OBJECT",
14167              "name": "BuildError",
14168              "ofType": null
14169            },
14170            "isDeprecated": false,
14171            "deprecationReason": null
14172          },
14173          {
14174            "name": "estimatedWaitTimeLeftSeconds",
14175            "description": null,
14176            "args": [],
14177            "type": {
14178              "kind": "SCALAR",
14179              "name": "Int",
14180              "ofType": null
14181            },
14182            "isDeprecated": false,
14183            "deprecationReason": null
14184          },
14185          {
14186            "name": "expirationDate",
14187            "description": null,
14188            "args": [],
14189            "type": {
14190              "kind": "SCALAR",
14191              "name": "DateTime",
14192              "ofType": null
14193            },
14194            "isDeprecated": false,
14195            "deprecationReason": null
14196          },
14197          {
14198            "name": "gitCommitHash",
14199            "description": null,
14200            "args": [],
14201            "type": {
14202              "kind": "SCALAR",
14203              "name": "String",
14204              "ofType": null
14205            },
14206            "isDeprecated": false,
14207            "deprecationReason": null
14208          },
14209          {
14210            "name": "gitCommitMessage",
14211            "description": null,
14212            "args": [],
14213            "type": {
14214              "kind": "SCALAR",
14215              "name": "String",
14216              "ofType": null
14217            },
14218            "isDeprecated": false,
14219            "deprecationReason": null
14220          },
14221          {
14222            "name": "gitRef",
14223            "description": null,
14224            "args": [],
14225            "type": {
14226              "kind": "SCALAR",
14227              "name": "String",
14228              "ofType": null
14229            },
14230            "isDeprecated": false,
14231            "deprecationReason": null
14232          },
14233          {
14234            "name": "githubRepositoryOwnerAndName",
14235            "description": null,
14236            "args": [],
14237            "type": {
14238              "kind": "SCALAR",
14239              "name": "String",
14240              "ofType": null
14241            },
14242            "isDeprecated": false,
14243            "deprecationReason": null
14244          },
14245          {
14246            "name": "id",
14247            "description": null,
14248            "args": [],
14249            "type": {
14250              "kind": "NON_NULL",
14251              "name": null,
14252              "ofType": {
14253                "kind": "SCALAR",
14254                "name": "ID",
14255                "ofType": null
14256              }
14257            },
14258            "isDeprecated": false,
14259            "deprecationReason": null
14260          },
14261          {
14262            "name": "initialQueuePosition",
14263            "description": "Queue position is 1-indexed",
14264            "args": [],
14265            "type": {
14266              "kind": "SCALAR",
14267              "name": "Int",
14268              "ofType": null
14269            },
14270            "isDeprecated": false,
14271            "deprecationReason": null
14272          },
14273          {
14274            "name": "initiatingActor",
14275            "description": null,
14276            "args": [],
14277            "type": {
14278              "kind": "INTERFACE",
14279              "name": "Actor",
14280              "ofType": null
14281            },
14282            "isDeprecated": false,
14283            "deprecationReason": null
14284          },
14285          {
14286            "name": "initiatingUser",
14287            "description": null,
14288            "args": [],
14289            "type": {
14290              "kind": "OBJECT",
14291              "name": "User",
14292              "ofType": null
14293            },
14294            "isDeprecated": true,
14295            "deprecationReason": "User type is deprecated"
14296          },
14297          {
14298            "name": "iosEnterpriseProvisioning",
14299            "description": null,
14300            "args": [],
14301            "type": {
14302              "kind": "ENUM",
14303              "name": "BuildIosEnterpriseProvisioning",
14304              "ofType": null
14305            },
14306            "isDeprecated": false,
14307            "deprecationReason": null
14308          },
14309          {
14310            "name": "isGitWorkingTreeDirty",
14311            "description": null,
14312            "args": [],
14313            "type": {
14314              "kind": "SCALAR",
14315              "name": "Boolean",
14316              "ofType": null
14317            },
14318            "isDeprecated": false,
14319            "deprecationReason": null
14320          },
14321          {
14322            "name": "logFiles",
14323            "description": null,
14324            "args": [],
14325            "type": {
14326              "kind": "NON_NULL",
14327              "name": null,
14328              "ofType": {
14329                "kind": "LIST",
14330                "name": null,
14331                "ofType": {
14332                  "kind": "NON_NULL",
14333                  "name": null,
14334                  "ofType": {
14335                    "kind": "SCALAR",
14336                    "name": "String",
14337                    "ofType": null
14338                  }
14339                }
14340              }
14341            },
14342            "isDeprecated": false,
14343            "deprecationReason": null
14344          },
14345          {
14346            "name": "maxBuildTimeSeconds",
14347            "description": null,
14348            "args": [],
14349            "type": {
14350              "kind": "NON_NULL",
14351              "name": null,
14352              "ofType": {
14353                "kind": "SCALAR",
14354                "name": "Int",
14355                "ofType": null
14356              }
14357            },
14358            "isDeprecated": false,
14359            "deprecationReason": null
14360          },
14361          {
14362            "name": "maxRetryTimeMinutes",
14363            "description": "Retry time starts after completedAt",
14364            "args": [],
14365            "type": {
14366              "kind": "SCALAR",
14367              "name": "Int",
14368              "ofType": null
14369            },
14370            "isDeprecated": false,
14371            "deprecationReason": null
14372          },
14373          {
14374            "name": "message",
14375            "description": null,
14376            "args": [],
14377            "type": {
14378              "kind": "SCALAR",
14379              "name": "String",
14380              "ofType": null
14381            },
14382            "isDeprecated": false,
14383            "deprecationReason": null
14384          },
14385          {
14386            "name": "metrics",
14387            "description": null,
14388            "args": [],
14389            "type": {
14390              "kind": "OBJECT",
14391              "name": "BuildMetrics",
14392              "ofType": null
14393            },
14394            "isDeprecated": false,
14395            "deprecationReason": null
14396          },
14397          {
14398            "name": "parentBuild",
14399            "description": null,
14400            "args": [],
14401            "type": {
14402              "kind": "OBJECT",
14403              "name": "Build",
14404              "ofType": null
14405            },
14406            "isDeprecated": false,
14407            "deprecationReason": null
14408          },
14409          {
14410            "name": "platform",
14411            "description": null,
14412            "args": [],
14413            "type": {
14414              "kind": "NON_NULL",
14415              "name": null,
14416              "ofType": {
14417                "kind": "ENUM",
14418                "name": "AppPlatform",
14419                "ofType": null
14420              }
14421            },
14422            "isDeprecated": false,
14423            "deprecationReason": null
14424          },
14425          {
14426            "name": "priority",
14427            "description": null,
14428            "args": [],
14429            "type": {
14430              "kind": "NON_NULL",
14431              "name": null,
14432              "ofType": {
14433                "kind": "ENUM",
14434                "name": "BuildPriority",
14435                "ofType": null
14436              }
14437            },
14438            "isDeprecated": false,
14439            "deprecationReason": null
14440          },
14441          {
14442            "name": "project",
14443            "description": null,
14444            "args": [],
14445            "type": {
14446              "kind": "NON_NULL",
14447              "name": null,
14448              "ofType": {
14449                "kind": "INTERFACE",
14450                "name": "Project",
14451                "ofType": null
14452              }
14453            },
14454            "isDeprecated": false,
14455            "deprecationReason": null
14456          },
14457          {
14458            "name": "projectRootDirectory",
14459            "description": null,
14460            "args": [],
14461            "type": {
14462              "kind": "SCALAR",
14463              "name": "String",
14464              "ofType": null
14465            },
14466            "isDeprecated": false,
14467            "deprecationReason": null
14468          },
14469          {
14470            "name": "provisioningStartedAt",
14471            "description": null,
14472            "args": [],
14473            "type": {
14474              "kind": "SCALAR",
14475              "name": "DateTime",
14476              "ofType": null
14477            },
14478            "isDeprecated": false,
14479            "deprecationReason": null
14480          },
14481          {
14482            "name": "queuePosition",
14483            "description": "Queue position is 1-indexed",
14484            "args": [],
14485            "type": {
14486              "kind": "SCALAR",
14487              "name": "Int",
14488              "ofType": null
14489            },
14490            "isDeprecated": false,
14491            "deprecationReason": null
14492          },
14493          {
14494            "name": "reactNativeVersion",
14495            "description": null,
14496            "args": [],
14497            "type": {
14498              "kind": "SCALAR",
14499              "name": "String",
14500              "ofType": null
14501            },
14502            "isDeprecated": false,
14503            "deprecationReason": null
14504          },
14505          {
14506            "name": "releaseChannel",
14507            "description": null,
14508            "args": [],
14509            "type": {
14510              "kind": "SCALAR",
14511              "name": "String",
14512              "ofType": null
14513            },
14514            "isDeprecated": false,
14515            "deprecationReason": null
14516          },
14517          {
14518            "name": "resourceClass",
14519            "description": "The builder resource class requested by the developer",
14520            "args": [],
14521            "type": {
14522              "kind": "NON_NULL",
14523              "name": null,
14524              "ofType": {
14525                "kind": "ENUM",
14526                "name": "BuildResourceClass",
14527                "ofType": null
14528              }
14529            },
14530            "isDeprecated": true,
14531            "deprecationReason": "Use resourceClassDisplayName instead"
14532          },
14533          {
14534            "name": "resourceClassDisplayName",
14535            "description": "String describing the resource class used to run the build",
14536            "args": [],
14537            "type": {
14538              "kind": "NON_NULL",
14539              "name": null,
14540              "ofType": {
14541                "kind": "SCALAR",
14542                "name": "String",
14543                "ofType": null
14544              }
14545            },
14546            "isDeprecated": false,
14547            "deprecationReason": null
14548          },
14549          {
14550            "name": "retryDisabledReason",
14551            "description": null,
14552            "args": [
14553              {
14554                "name": "newMode",
14555                "description": null,
14556                "type": {
14557                  "kind": "ENUM",
14558                  "name": "BuildMode",
14559                  "ofType": null
14560                },
14561                "defaultValue": null,
14562                "isDeprecated": false,
14563                "deprecationReason": null
14564              }
14565            ],
14566            "type": {
14567              "kind": "ENUM",
14568              "name": "BuildRetryDisabledReason",
14569              "ofType": null
14570            },
14571            "isDeprecated": false,
14572            "deprecationReason": null
14573          },
14574          {
14575            "name": "runFromCI",
14576            "description": null,
14577            "args": [],
14578            "type": {
14579              "kind": "SCALAR",
14580              "name": "Boolean",
14581              "ofType": null
14582            },
14583            "isDeprecated": false,
14584            "deprecationReason": null
14585          },
14586          {
14587            "name": "runtimeVersion",
14588            "description": null,
14589            "args": [],
14590            "type": {
14591              "kind": "SCALAR",
14592              "name": "String",
14593              "ofType": null
14594            },
14595            "isDeprecated": false,
14596            "deprecationReason": null
14597          },
14598          {
14599            "name": "sdkVersion",
14600            "description": null,
14601            "args": [],
14602            "type": {
14603              "kind": "SCALAR",
14604              "name": "String",
14605              "ofType": null
14606            },
14607            "isDeprecated": false,
14608            "deprecationReason": null
14609          },
14610          {
14611            "name": "status",
14612            "description": null,
14613            "args": [],
14614            "type": {
14615              "kind": "NON_NULL",
14616              "name": null,
14617              "ofType": {
14618                "kind": "ENUM",
14619                "name": "BuildStatus",
14620                "ofType": null
14621              }
14622            },
14623            "isDeprecated": false,
14624            "deprecationReason": null
14625          },
14626          {
14627            "name": "submissions",
14628            "description": null,
14629            "args": [],
14630            "type": {
14631              "kind": "NON_NULL",
14632              "name": null,
14633              "ofType": {
14634                "kind": "LIST",
14635                "name": null,
14636                "ofType": {
14637                  "kind": "NON_NULL",
14638                  "name": null,
14639                  "ofType": {
14640                    "kind": "OBJECT",
14641                    "name": "Submission",
14642                    "ofType": null
14643                  }
14644                }
14645              }
14646            },
14647            "isDeprecated": false,
14648            "deprecationReason": null
14649          },
14650          {
14651            "name": "updatedAt",
14652            "description": null,
14653            "args": [],
14654            "type": {
14655              "kind": "NON_NULL",
14656              "name": null,
14657              "ofType": {
14658                "kind": "SCALAR",
14659                "name": "DateTime",
14660                "ofType": null
14661              }
14662            },
14663            "isDeprecated": false,
14664            "deprecationReason": null
14665          },
14666          {
14667            "name": "workerStartedAt",
14668            "description": null,
14669            "args": [],
14670            "type": {
14671              "kind": "SCALAR",
14672              "name": "DateTime",
14673              "ofType": null
14674            },
14675            "isDeprecated": false,
14676            "deprecationReason": null
14677          }
14678        ],
14679        "inputFields": null,
14680        "interfaces": [
14681          {
14682            "kind": "INTERFACE",
14683            "name": "ActivityTimelineProjectActivity",
14684            "ofType": null
14685          },
14686          {
14687            "kind": "INTERFACE",
14688            "name": "BuildOrBuildJob",
14689            "ofType": null
14690          }
14691        ],
14692        "enumValues": null,
14693        "possibleTypes": null
14694      },
14695      {
14696        "kind": "OBJECT",
14697        "name": "BuildArtifact",
14698        "description": null,
14699        "fields": [
14700          {
14701            "name": "manifestPlistUrl",
14702            "description": null,
14703            "args": [],
14704            "type": {
14705              "kind": "SCALAR",
14706              "name": "String",
14707              "ofType": null
14708            },
14709            "isDeprecated": false,
14710            "deprecationReason": null
14711          },
14712          {
14713            "name": "url",
14714            "description": null,
14715            "args": [],
14716            "type": {
14717              "kind": "NON_NULL",
14718              "name": null,
14719              "ofType": {
14720                "kind": "SCALAR",
14721                "name": "String",
14722                "ofType": null
14723              }
14724            },
14725            "isDeprecated": false,
14726            "deprecationReason": null
14727          }
14728        ],
14729        "inputFields": null,
14730        "interfaces": [],
14731        "enumValues": null,
14732        "possibleTypes": null
14733      },
14734      {
14735        "kind": "OBJECT",
14736        "name": "BuildArtifacts",
14737        "description": null,
14738        "fields": [
14739          {
14740            "name": "applicationArchiveUrl",
14741            "description": null,
14742            "args": [],
14743            "type": {
14744              "kind": "SCALAR",
14745              "name": "String",
14746              "ofType": null
14747            },
14748            "isDeprecated": false,
14749            "deprecationReason": null
14750          },
14751          {
14752            "name": "buildArtifactsUrl",
14753            "description": null,
14754            "args": [],
14755            "type": {
14756              "kind": "SCALAR",
14757              "name": "String",
14758              "ofType": null
14759            },
14760            "isDeprecated": false,
14761            "deprecationReason": null
14762          },
14763          {
14764            "name": "buildUrl",
14765            "description": null,
14766            "args": [],
14767            "type": {
14768              "kind": "SCALAR",
14769              "name": "String",
14770              "ofType": null
14771            },
14772            "isDeprecated": false,
14773            "deprecationReason": null
14774          },
14775          {
14776            "name": "xcodeBuildLogsUrl",
14777            "description": null,
14778            "args": [],
14779            "type": {
14780              "kind": "SCALAR",
14781              "name": "String",
14782              "ofType": null
14783            },
14784            "isDeprecated": false,
14785            "deprecationReason": null
14786          }
14787        ],
14788        "inputFields": null,
14789        "interfaces": [],
14790        "enumValues": null,
14791        "possibleTypes": null
14792      },
14793      {
14794        "kind": "INPUT_OBJECT",
14795        "name": "BuildCacheInput",
14796        "description": null,
14797        "fields": null,
14798        "inputFields": [
14799          {
14800            "name": "clear",
14801            "description": null,
14802            "type": {
14803              "kind": "SCALAR",
14804              "name": "Boolean",
14805              "ofType": null
14806            },
14807            "defaultValue": null,
14808            "isDeprecated": false,
14809            "deprecationReason": null
14810          },
14811          {
14812            "name": "disabled",
14813            "description": null,
14814            "type": {
14815              "kind": "SCALAR",
14816              "name": "Boolean",
14817              "ofType": null
14818            },
14819            "defaultValue": null,
14820            "isDeprecated": false,
14821            "deprecationReason": null
14822          },
14823          {
14824            "name": "key",
14825            "description": null,
14826            "type": {
14827              "kind": "SCALAR",
14828              "name": "String",
14829              "ofType": null
14830            },
14831            "defaultValue": null,
14832            "isDeprecated": false,
14833            "deprecationReason": null
14834          },
14835          {
14836            "name": "paths",
14837            "description": null,
14838            "type": {
14839              "kind": "LIST",
14840              "name": null,
14841              "ofType": {
14842                "kind": "NON_NULL",
14843                "name": null,
14844                "ofType": {
14845                  "kind": "SCALAR",
14846                  "name": "String",
14847                  "ofType": null
14848                }
14849              }
14850            },
14851            "defaultValue": null,
14852            "isDeprecated": false,
14853            "deprecationReason": null
14854          }
14855        ],
14856        "interfaces": null,
14857        "enumValues": null,
14858        "possibleTypes": null
14859      },
14860      {
14861        "kind": "ENUM",
14862        "name": "BuildCredentialsSource",
14863        "description": null,
14864        "fields": null,
14865        "inputFields": null,
14866        "interfaces": null,
14867        "enumValues": [
14868          {
14869            "name": "LOCAL",
14870            "description": null,
14871            "isDeprecated": false,
14872            "deprecationReason": null
14873          },
14874          {
14875            "name": "REMOTE",
14876            "description": null,
14877            "isDeprecated": false,
14878            "deprecationReason": null
14879          }
14880        ],
14881        "possibleTypes": null
14882      },
14883      {
14884        "kind": "OBJECT",
14885        "name": "BuildError",
14886        "description": null,
14887        "fields": [
14888          {
14889            "name": "docsUrl",
14890            "description": null,
14891            "args": [],
14892            "type": {
14893              "kind": "SCALAR",
14894              "name": "String",
14895              "ofType": null
14896            },
14897            "isDeprecated": false,
14898            "deprecationReason": null
14899          },
14900          {
14901            "name": "errorCode",
14902            "description": null,
14903            "args": [],
14904            "type": {
14905              "kind": "NON_NULL",
14906              "name": null,
14907              "ofType": {
14908                "kind": "SCALAR",
14909                "name": "String",
14910                "ofType": null
14911              }
14912            },
14913            "isDeprecated": false,
14914            "deprecationReason": null
14915          },
14916          {
14917            "name": "message",
14918            "description": null,
14919            "args": [],
14920            "type": {
14921              "kind": "NON_NULL",
14922              "name": null,
14923              "ofType": {
14924                "kind": "SCALAR",
14925                "name": "String",
14926                "ofType": null
14927              }
14928            },
14929            "isDeprecated": false,
14930            "deprecationReason": null
14931          }
14932        ],
14933        "inputFields": null,
14934        "interfaces": [],
14935        "enumValues": null,
14936        "possibleTypes": null
14937      },
14938      {
14939        "kind": "INPUT_OBJECT",
14940        "name": "BuildFilter",
14941        "description": null,
14942        "fields": null,
14943        "inputFields": [
14944          {
14945            "name": "appBuildVersion",
14946            "description": null,
14947            "type": {
14948              "kind": "SCALAR",
14949              "name": "String",
14950              "ofType": null
14951            },
14952            "defaultValue": null,
14953            "isDeprecated": false,
14954            "deprecationReason": null
14955          },
14956          {
14957            "name": "appIdentifier",
14958            "description": null,
14959            "type": {
14960              "kind": "SCALAR",
14961              "name": "String",
14962              "ofType": null
14963            },
14964            "defaultValue": null,
14965            "isDeprecated": false,
14966            "deprecationReason": null
14967          },
14968          {
14969            "name": "appVersion",
14970            "description": null,
14971            "type": {
14972              "kind": "SCALAR",
14973              "name": "String",
14974              "ofType": null
14975            },
14976            "defaultValue": null,
14977            "isDeprecated": false,
14978            "deprecationReason": null
14979          },
14980          {
14981            "name": "buildProfile",
14982            "description": null,
14983            "type": {
14984              "kind": "SCALAR",
14985              "name": "String",
14986              "ofType": null
14987            },
14988            "defaultValue": null,
14989            "isDeprecated": false,
14990            "deprecationReason": null
14991          },
14992          {
14993            "name": "channel",
14994            "description": null,
14995            "type": {
14996              "kind": "SCALAR",
14997              "name": "String",
14998              "ofType": null
14999            },
15000            "defaultValue": null,
15001            "isDeprecated": false,
15002            "deprecationReason": null
15003          },
15004          {
15005            "name": "distribution",
15006            "description": null,
15007            "type": {
15008              "kind": "ENUM",
15009              "name": "DistributionType",
15010              "ofType": null
15011            },
15012            "defaultValue": null,
15013            "isDeprecated": false,
15014            "deprecationReason": null
15015          },
15016          {
15017            "name": "gitCommitHash",
15018            "description": null,
15019            "type": {
15020              "kind": "SCALAR",
15021              "name": "String",
15022              "ofType": null
15023            },
15024            "defaultValue": null,
15025            "isDeprecated": false,
15026            "deprecationReason": null
15027          },
15028          {
15029            "name": "platform",
15030            "description": null,
15031            "type": {
15032              "kind": "ENUM",
15033              "name": "AppPlatform",
15034              "ofType": null
15035            },
15036            "defaultValue": null,
15037            "isDeprecated": false,
15038            "deprecationReason": null
15039          },
15040          {
15041            "name": "runtimeVersion",
15042            "description": null,
15043            "type": {
15044              "kind": "SCALAR",
15045              "name": "String",
15046              "ofType": null
15047            },
15048            "defaultValue": null,
15049            "isDeprecated": false,
15050            "deprecationReason": null
15051          },
15052          {
15053            "name": "sdkVersion",
15054            "description": null,
15055            "type": {
15056              "kind": "SCALAR",
15057              "name": "String",
15058              "ofType": null
15059            },
15060            "defaultValue": null,
15061            "isDeprecated": false,
15062            "deprecationReason": null
15063          },
15064          {
15065            "name": "status",
15066            "description": null,
15067            "type": {
15068              "kind": "ENUM",
15069              "name": "BuildStatus",
15070              "ofType": null
15071            },
15072            "defaultValue": null,
15073            "isDeprecated": false,
15074            "deprecationReason": null
15075          }
15076        ],
15077        "interfaces": null,
15078        "enumValues": null,
15079        "possibleTypes": null
15080      },
15081      {
15082        "kind": "INPUT_OBJECT",
15083        "name": "BuildFilterInput",
15084        "description": null,
15085        "fields": null,
15086        "inputFields": [
15087          {
15088            "name": "channel",
15089            "description": null,
15090            "type": {
15091              "kind": "SCALAR",
15092              "name": "String",
15093              "ofType": null
15094            },
15095            "defaultValue": null,
15096            "isDeprecated": false,
15097            "deprecationReason": null
15098          },
15099          {
15100            "name": "platforms",
15101            "description": null,
15102            "type": {
15103              "kind": "LIST",
15104              "name": null,
15105              "ofType": {
15106                "kind": "NON_NULL",
15107                "name": null,
15108                "ofType": {
15109                  "kind": "ENUM",
15110                  "name": "AppPlatform",
15111                  "ofType": null
15112                }
15113              }
15114            },
15115            "defaultValue": null,
15116            "isDeprecated": false,
15117            "deprecationReason": null
15118          },
15119          {
15120            "name": "releaseChannel",
15121            "description": null,
15122            "type": {
15123              "kind": "SCALAR",
15124              "name": "String",
15125              "ofType": null
15126            },
15127            "defaultValue": null,
15128            "isDeprecated": false,
15129            "deprecationReason": null
15130          }
15131        ],
15132        "interfaces": null,
15133        "enumValues": null,
15134        "possibleTypes": null
15135      },
15136      {
15137        "kind": "ENUM",
15138        "name": "BuildIosEnterpriseProvisioning",
15139        "description": null,
15140        "fields": null,
15141        "inputFields": null,
15142        "interfaces": null,
15143        "enumValues": [
15144          {
15145            "name": "ADHOC",
15146            "description": null,
15147            "isDeprecated": false,
15148            "deprecationReason": null
15149          },
15150          {
15151            "name": "UNIVERSAL",
15152            "description": null,
15153            "isDeprecated": false,
15154            "deprecationReason": null
15155          }
15156        ],
15157        "possibleTypes": null
15158      },
15159      {
15160        "kind": "OBJECT",
15161        "name": "BuildJob",
15162        "description": "Represents an Standalone App build job",
15163        "fields": [
15164          {
15165            "name": "accountUserActor",
15166            "description": null,
15167            "args": [],
15168            "type": {
15169              "kind": "INTERFACE",
15170              "name": "UserActor",
15171              "ofType": null
15172            },
15173            "isDeprecated": false,
15174            "deprecationReason": null
15175          },
15176          {
15177            "name": "activityTimestamp",
15178            "description": null,
15179            "args": [],
15180            "type": {
15181              "kind": "NON_NULL",
15182              "name": null,
15183              "ofType": {
15184                "kind": "SCALAR",
15185                "name": "DateTime",
15186                "ofType": null
15187              }
15188            },
15189            "isDeprecated": false,
15190            "deprecationReason": null
15191          },
15192          {
15193            "name": "actor",
15194            "description": null,
15195            "args": [],
15196            "type": {
15197              "kind": "INTERFACE",
15198              "name": "Actor",
15199              "ofType": null
15200            },
15201            "isDeprecated": false,
15202            "deprecationReason": null
15203          },
15204          {
15205            "name": "app",
15206            "description": null,
15207            "args": [],
15208            "type": {
15209              "kind": "OBJECT",
15210              "name": "App",
15211              "ofType": null
15212            },
15213            "isDeprecated": false,
15214            "deprecationReason": null
15215          },
15216          {
15217            "name": "artifacts",
15218            "description": null,
15219            "args": [],
15220            "type": {
15221              "kind": "OBJECT",
15222              "name": "BuildArtifact",
15223              "ofType": null
15224            },
15225            "isDeprecated": false,
15226            "deprecationReason": null
15227          },
15228          {
15229            "name": "config",
15230            "description": null,
15231            "args": [],
15232            "type": {
15233              "kind": "SCALAR",
15234              "name": "JSON",
15235              "ofType": null
15236            },
15237            "isDeprecated": false,
15238            "deprecationReason": null
15239          },
15240          {
15241            "name": "created",
15242            "description": null,
15243            "args": [],
15244            "type": {
15245              "kind": "SCALAR",
15246              "name": "DateTime",
15247              "ofType": null
15248            },
15249            "isDeprecated": false,
15250            "deprecationReason": null
15251          },
15252          {
15253            "name": "expirationDate",
15254            "description": null,
15255            "args": [],
15256            "type": {
15257              "kind": "SCALAR",
15258              "name": "DateTime",
15259              "ofType": null
15260            },
15261            "isDeprecated": false,
15262            "deprecationReason": null
15263          },
15264          {
15265            "name": "fullExperienceName",
15266            "description": null,
15267            "args": [],
15268            "type": {
15269              "kind": "SCALAR",
15270              "name": "String",
15271              "ofType": null
15272            },
15273            "isDeprecated": false,
15274            "deprecationReason": null
15275          },
15276          {
15277            "name": "id",
15278            "description": null,
15279            "args": [],
15280            "type": {
15281              "kind": "NON_NULL",
15282              "name": null,
15283              "ofType": {
15284                "kind": "SCALAR",
15285                "name": "ID",
15286                "ofType": null
15287              }
15288            },
15289            "isDeprecated": false,
15290            "deprecationReason": null
15291          },
15292          {
15293            "name": "logs",
15294            "description": null,
15295            "args": [],
15296            "type": {
15297              "kind": "OBJECT",
15298              "name": "BuildLogs",
15299              "ofType": null
15300            },
15301            "isDeprecated": false,
15302            "deprecationReason": null
15303          },
15304          {
15305            "name": "platform",
15306            "description": null,
15307            "args": [],
15308            "type": {
15309              "kind": "NON_NULL",
15310              "name": null,
15311              "ofType": {
15312                "kind": "ENUM",
15313                "name": "AppPlatform",
15314                "ofType": null
15315              }
15316            },
15317            "isDeprecated": false,
15318            "deprecationReason": null
15319          },
15320          {
15321            "name": "release",
15322            "description": null,
15323            "args": [],
15324            "type": {
15325              "kind": "OBJECT",
15326              "name": "AppRelease",
15327              "ofType": null
15328            },
15329            "isDeprecated": false,
15330            "deprecationReason": null
15331          },
15332          {
15333            "name": "releaseChannel",
15334            "description": null,
15335            "args": [],
15336            "type": {
15337              "kind": "SCALAR",
15338              "name": "String",
15339              "ofType": null
15340            },
15341            "isDeprecated": false,
15342            "deprecationReason": null
15343          },
15344          {
15345            "name": "sdkVersion",
15346            "description": null,
15347            "args": [],
15348            "type": {
15349              "kind": "SCALAR",
15350              "name": "String",
15351              "ofType": null
15352            },
15353            "isDeprecated": false,
15354            "deprecationReason": null
15355          },
15356          {
15357            "name": "status",
15358            "description": null,
15359            "args": [],
15360            "type": {
15361              "kind": "ENUM",
15362              "name": "BuildJobStatus",
15363              "ofType": null
15364            },
15365            "isDeprecated": false,
15366            "deprecationReason": null
15367          },
15368          {
15369            "name": "updated",
15370            "description": null,
15371            "args": [],
15372            "type": {
15373              "kind": "SCALAR",
15374              "name": "DateTime",
15375              "ofType": null
15376            },
15377            "isDeprecated": false,
15378            "deprecationReason": null
15379          },
15380          {
15381            "name": "user",
15382            "description": null,
15383            "args": [],
15384            "type": {
15385              "kind": "OBJECT",
15386              "name": "User",
15387              "ofType": null
15388            },
15389            "isDeprecated": false,
15390            "deprecationReason": null
15391          }
15392        ],
15393        "inputFields": null,
15394        "interfaces": [
15395          {
15396            "kind": "INTERFACE",
15397            "name": "ActivityTimelineProjectActivity",
15398            "ofType": null
15399          },
15400          {
15401            "kind": "INTERFACE",
15402            "name": "BuildOrBuildJob",
15403            "ofType": null
15404          }
15405        ],
15406        "enumValues": null,
15407        "possibleTypes": null
15408      },
15409      {
15410        "kind": "ENUM",
15411        "name": "BuildJobLogsFormat",
15412        "description": null,
15413        "fields": null,
15414        "inputFields": null,
15415        "interfaces": null,
15416        "enumValues": [
15417          {
15418            "name": "JSON",
15419            "description": null,
15420            "isDeprecated": false,
15421            "deprecationReason": null
15422          },
15423          {
15424            "name": "RAW",
15425            "description": null,
15426            "isDeprecated": false,
15427            "deprecationReason": null
15428          }
15429        ],
15430        "possibleTypes": null
15431      },
15432      {
15433        "kind": "OBJECT",
15434        "name": "BuildJobMutation",
15435        "description": null,
15436        "fields": [
15437          {
15438            "name": "del",
15439            "description": null,
15440            "args": [],
15441            "type": {
15442              "kind": "OBJECT",
15443              "name": "BuildJob",
15444              "ofType": null
15445            },
15446            "isDeprecated": false,
15447            "deprecationReason": null
15448          }
15449        ],
15450        "inputFields": null,
15451        "interfaces": [],
15452        "enumValues": null,
15453        "possibleTypes": null
15454      },
15455      {
15456        "kind": "OBJECT",
15457        "name": "BuildJobQuery",
15458        "description": null,
15459        "fields": [
15460          {
15461            "name": "all",
15462            "description": "get all build jobs by an optional filter",
15463            "args": [
15464              {
15465                "name": "experienceSlug",
15466                "description": null,
15467                "type": {
15468                  "kind": "SCALAR",
15469                  "name": "String",
15470                  "ofType": null
15471                },
15472                "defaultValue": null,
15473                "isDeprecated": false,
15474                "deprecationReason": null
15475              },
15476              {
15477                "name": "limit",
15478                "description": null,
15479                "type": {
15480                  "kind": "SCALAR",
15481                  "name": "Int",
15482                  "ofType": null
15483                },
15484                "defaultValue": null,
15485                "isDeprecated": false,
15486                "deprecationReason": null
15487              },
15488              {
15489                "name": "offset",
15490                "description": null,
15491                "type": {
15492                  "kind": "SCALAR",
15493                  "name": "Int",
15494                  "ofType": null
15495                },
15496                "defaultValue": null,
15497                "isDeprecated": false,
15498                "deprecationReason": null
15499              },
15500              {
15501                "name": "showAdminView",
15502                "description": "allows admins to see every entry by any user, but it scopes it to the user's own entries by default",
15503                "type": {
15504                  "kind": "SCALAR",
15505                  "name": "Boolean",
15506                  "ofType": null
15507                },
15508                "defaultValue": "false",
15509                "isDeprecated": false,
15510                "deprecationReason": null
15511              },
15512              {
15513                "name": "status",
15514                "description": null,
15515                "type": {
15516                  "kind": "ENUM",
15517                  "name": "BuildJobStatus",
15518                  "ofType": null
15519                },
15520                "defaultValue": null,
15521                "isDeprecated": false,
15522                "deprecationReason": null
15523              },
15524              {
15525                "name": "username",
15526                "description": null,
15527                "type": {
15528                  "kind": "SCALAR",
15529                  "name": "String",
15530                  "ofType": null
15531                },
15532                "defaultValue": null,
15533                "isDeprecated": false,
15534                "deprecationReason": null
15535              }
15536            ],
15537            "type": {
15538              "kind": "NON_NULL",
15539              "name": null,
15540              "ofType": {
15541                "kind": "LIST",
15542                "name": null,
15543                "ofType": {
15544                  "kind": "OBJECT",
15545                  "name": "BuildJob",
15546                  "ofType": null
15547                }
15548              }
15549            },
15550            "isDeprecated": true,
15551            "deprecationReason": "Prefer Account.buildJobs or App.buildJobs"
15552          },
15553          {
15554            "name": "byId",
15555            "description": null,
15556            "args": [
15557              {
15558                "name": "buildId",
15559                "description": null,
15560                "type": {
15561                  "kind": "NON_NULL",
15562                  "name": null,
15563                  "ofType": {
15564                    "kind": "SCALAR",
15565                    "name": "ID",
15566                    "ofType": null
15567                  }
15568                },
15569                "defaultValue": null,
15570                "isDeprecated": false,
15571                "deprecationReason": null
15572              }
15573            ],
15574            "type": {
15575              "kind": "NON_NULL",
15576              "name": null,
15577              "ofType": {
15578                "kind": "OBJECT",
15579                "name": "BuildJob",
15580                "ofType": null
15581              }
15582            },
15583            "isDeprecated": false,
15584            "deprecationReason": null
15585          }
15586        ],
15587        "inputFields": null,
15588        "interfaces": [],
15589        "enumValues": null,
15590        "possibleTypes": null
15591      },
15592      {
15593        "kind": "ENUM",
15594        "name": "BuildJobStatus",
15595        "description": null,
15596        "fields": null,
15597        "inputFields": null,
15598        "interfaces": null,
15599        "enumValues": [
15600          {
15601            "name": "ERRORED",
15602            "description": null,
15603            "isDeprecated": false,
15604            "deprecationReason": null
15605          },
15606          {
15607            "name": "FINISHED",
15608            "description": null,
15609            "isDeprecated": false,
15610            "deprecationReason": null
15611          },
15612          {
15613            "name": "IN_PROGRESS",
15614            "description": null,
15615            "isDeprecated": false,
15616            "deprecationReason": null
15617          },
15618          {
15619            "name": "PENDING",
15620            "description": null,
15621            "isDeprecated": false,
15622            "deprecationReason": null
15623          },
15624          {
15625            "name": "SENT_TO_QUEUE",
15626            "description": null,
15627            "isDeprecated": false,
15628            "deprecationReason": null
15629          },
15630          {
15631            "name": "STARTED",
15632            "description": null,
15633            "isDeprecated": false,
15634            "deprecationReason": null
15635          }
15636        ],
15637        "possibleTypes": null
15638      },
15639      {
15640        "kind": "OBJECT",
15641        "name": "BuildLogs",
15642        "description": null,
15643        "fields": [
15644          {
15645            "name": "format",
15646            "description": null,
15647            "args": [],
15648            "type": {
15649              "kind": "ENUM",
15650              "name": "BuildJobLogsFormat",
15651              "ofType": null
15652            },
15653            "isDeprecated": false,
15654            "deprecationReason": null
15655          },
15656          {
15657            "name": "url",
15658            "description": null,
15659            "args": [],
15660            "type": {
15661              "kind": "SCALAR",
15662              "name": "String",
15663              "ofType": null
15664            },
15665            "isDeprecated": false,
15666            "deprecationReason": null
15667          }
15668        ],
15669        "inputFields": null,
15670        "interfaces": [],
15671        "enumValues": null,
15672        "possibleTypes": null
15673      },
15674      {
15675        "kind": "INPUT_OBJECT",
15676        "name": "BuildMetadataInput",
15677        "description": null,
15678        "fields": null,
15679        "inputFields": [
15680          {
15681            "name": "appBuildVersion",
15682            "description": null,
15683            "type": {
15684              "kind": "SCALAR",
15685              "name": "String",
15686              "ofType": null
15687            },
15688            "defaultValue": null,
15689            "isDeprecated": false,
15690            "deprecationReason": null
15691          },
15692          {
15693            "name": "appIdentifier",
15694            "description": null,
15695            "type": {
15696              "kind": "SCALAR",
15697              "name": "String",
15698              "ofType": null
15699            },
15700            "defaultValue": null,
15701            "isDeprecated": false,
15702            "deprecationReason": null
15703          },
15704          {
15705            "name": "appName",
15706            "description": null,
15707            "type": {
15708              "kind": "SCALAR",
15709              "name": "String",
15710              "ofType": null
15711            },
15712            "defaultValue": null,
15713            "isDeprecated": false,
15714            "deprecationReason": null
15715          },
15716          {
15717            "name": "appVersion",
15718            "description": null,
15719            "type": {
15720              "kind": "SCALAR",
15721              "name": "String",
15722              "ofType": null
15723            },
15724            "defaultValue": null,
15725            "isDeprecated": false,
15726            "deprecationReason": null
15727          },
15728          {
15729            "name": "buildMode",
15730            "description": null,
15731            "type": {
15732              "kind": "ENUM",
15733              "name": "BuildMode",
15734              "ofType": null
15735            },
15736            "defaultValue": null,
15737            "isDeprecated": false,
15738            "deprecationReason": null
15739          },
15740          {
15741            "name": "buildProfile",
15742            "description": null,
15743            "type": {
15744              "kind": "SCALAR",
15745              "name": "String",
15746              "ofType": null
15747            },
15748            "defaultValue": null,
15749            "isDeprecated": false,
15750            "deprecationReason": null
15751          },
15752          {
15753            "name": "channel",
15754            "description": null,
15755            "type": {
15756              "kind": "SCALAR",
15757              "name": "String",
15758              "ofType": null
15759            },
15760            "defaultValue": null,
15761            "isDeprecated": false,
15762            "deprecationReason": null
15763          },
15764          {
15765            "name": "cliVersion",
15766            "description": null,
15767            "type": {
15768              "kind": "SCALAR",
15769              "name": "String",
15770              "ofType": null
15771            },
15772            "defaultValue": null,
15773            "isDeprecated": false,
15774            "deprecationReason": null
15775          },
15776          {
15777            "name": "credentialsSource",
15778            "description": null,
15779            "type": {
15780              "kind": "ENUM",
15781              "name": "BuildCredentialsSource",
15782              "ofType": null
15783            },
15784            "defaultValue": null,
15785            "isDeprecated": false,
15786            "deprecationReason": null
15787          },
15788          {
15789            "name": "customWorkflowName",
15790            "description": null,
15791            "type": {
15792              "kind": "SCALAR",
15793              "name": "String",
15794              "ofType": null
15795            },
15796            "defaultValue": null,
15797            "isDeprecated": false,
15798            "deprecationReason": null
15799          },
15800          {
15801            "name": "distribution",
15802            "description": null,
15803            "type": {
15804              "kind": "ENUM",
15805              "name": "DistributionType",
15806              "ofType": null
15807            },
15808            "defaultValue": null,
15809            "isDeprecated": false,
15810            "deprecationReason": null
15811          },
15812          {
15813            "name": "gitCommitHash",
15814            "description": null,
15815            "type": {
15816              "kind": "SCALAR",
15817              "name": "String",
15818              "ofType": null
15819            },
15820            "defaultValue": null,
15821            "isDeprecated": false,
15822            "deprecationReason": null
15823          },
15824          {
15825            "name": "gitCommitMessage",
15826            "description": null,
15827            "type": {
15828              "kind": "SCALAR",
15829              "name": "String",
15830              "ofType": null
15831            },
15832            "defaultValue": null,
15833            "isDeprecated": false,
15834            "deprecationReason": null
15835          },
15836          {
15837            "name": "iosEnterpriseProvisioning",
15838            "description": null,
15839            "type": {
15840              "kind": "ENUM",
15841              "name": "BuildIosEnterpriseProvisioning",
15842              "ofType": null
15843            },
15844            "defaultValue": null,
15845            "isDeprecated": false,
15846            "deprecationReason": null
15847          },
15848          {
15849            "name": "isGitWorkingTreeDirty",
15850            "description": null,
15851            "type": {
15852              "kind": "SCALAR",
15853              "name": "Boolean",
15854              "ofType": null
15855            },
15856            "defaultValue": null,
15857            "isDeprecated": false,
15858            "deprecationReason": null
15859          },
15860          {
15861            "name": "message",
15862            "description": null,
15863            "type": {
15864              "kind": "SCALAR",
15865              "name": "String",
15866              "ofType": null
15867            },
15868            "defaultValue": null,
15869            "isDeprecated": false,
15870            "deprecationReason": null
15871          },
15872          {
15873            "name": "reactNativeVersion",
15874            "description": null,
15875            "type": {
15876              "kind": "SCALAR",
15877              "name": "String",
15878              "ofType": null
15879            },
15880            "defaultValue": null,
15881            "isDeprecated": false,
15882            "deprecationReason": null
15883          },
15884          {
15885            "name": "releaseChannel",
15886            "description": null,
15887            "type": {
15888              "kind": "SCALAR",
15889              "name": "String",
15890              "ofType": null
15891            },
15892            "defaultValue": null,
15893            "isDeprecated": false,
15894            "deprecationReason": null
15895          },
15896          {
15897            "name": "runFromCI",
15898            "description": null,
15899            "type": {
15900              "kind": "SCALAR",
15901              "name": "Boolean",
15902              "ofType": null
15903            },
15904            "defaultValue": null,
15905            "isDeprecated": false,
15906            "deprecationReason": null
15907          },
15908          {
15909            "name": "runWithNoWaitFlag",
15910            "description": null,
15911            "type": {
15912              "kind": "SCALAR",
15913              "name": "Boolean",
15914              "ofType": null
15915            },
15916            "defaultValue": null,
15917            "isDeprecated": false,
15918            "deprecationReason": null
15919          },
15920          {
15921            "name": "runtimeVersion",
15922            "description": null,
15923            "type": {
15924              "kind": "SCALAR",
15925              "name": "String",
15926              "ofType": null
15927            },
15928            "defaultValue": null,
15929            "isDeprecated": false,
15930            "deprecationReason": null
15931          },
15932          {
15933            "name": "sdkVersion",
15934            "description": null,
15935            "type": {
15936              "kind": "SCALAR",
15937              "name": "String",
15938              "ofType": null
15939            },
15940            "defaultValue": null,
15941            "isDeprecated": false,
15942            "deprecationReason": null
15943          },
15944          {
15945            "name": "trackingContext",
15946            "description": null,
15947            "type": {
15948              "kind": "SCALAR",
15949              "name": "JSONObject",
15950              "ofType": null
15951            },
15952            "defaultValue": null,
15953            "isDeprecated": false,
15954            "deprecationReason": null
15955          },
15956          {
15957            "name": "username",
15958            "description": null,
15959            "type": {
15960              "kind": "SCALAR",
15961              "name": "String",
15962              "ofType": null
15963            },
15964            "defaultValue": null,
15965            "isDeprecated": false,
15966            "deprecationReason": null
15967          },
15968          {
15969            "name": "workflow",
15970            "description": null,
15971            "type": {
15972              "kind": "ENUM",
15973              "name": "BuildWorkflow",
15974              "ofType": null
15975            },
15976            "defaultValue": null,
15977            "isDeprecated": false,
15978            "deprecationReason": null
15979          }
15980        ],
15981        "interfaces": null,
15982        "enumValues": null,
15983        "possibleTypes": null
15984      },
15985      {
15986        "kind": "OBJECT",
15987        "name": "BuildMetrics",
15988        "description": null,
15989        "fields": [
15990          {
15991            "name": "buildDuration",
15992            "description": null,
15993            "args": [],
15994            "type": {
15995              "kind": "SCALAR",
15996              "name": "Int",
15997              "ofType": null
15998            },
15999            "isDeprecated": false,
16000            "deprecationReason": null
16001          },
16002          {
16003            "name": "buildQueueTime",
16004            "description": null,
16005            "args": [],
16006            "type": {
16007              "kind": "SCALAR",
16008              "name": "Int",
16009              "ofType": null
16010            },
16011            "isDeprecated": false,
16012            "deprecationReason": null
16013          },
16014          {
16015            "name": "buildWaitTime",
16016            "description": null,
16017            "args": [],
16018            "type": {
16019              "kind": "SCALAR",
16020              "name": "Int",
16021              "ofType": null
16022            },
16023            "isDeprecated": false,
16024            "deprecationReason": null
16025          }
16026        ],
16027        "inputFields": null,
16028        "interfaces": [],
16029        "enumValues": null,
16030        "possibleTypes": null
16031      },
16032      {
16033        "kind": "ENUM",
16034        "name": "BuildMode",
16035        "description": null,
16036        "fields": null,
16037        "inputFields": null,
16038        "interfaces": null,
16039        "enumValues": [
16040          {
16041            "name": "BUILD",
16042            "description": null,
16043            "isDeprecated": false,
16044            "deprecationReason": null
16045          },
16046          {
16047            "name": "CUSTOM",
16048            "description": null,
16049            "isDeprecated": false,
16050            "deprecationReason": null
16051          },
16052          {
16053            "name": "RESIGN",
16054            "description": null,
16055            "isDeprecated": false,
16056            "deprecationReason": null
16057          }
16058        ],
16059        "possibleTypes": null
16060      },
16061      {
16062        "kind": "OBJECT",
16063        "name": "BuildMutation",
16064        "description": null,
16065        "fields": [
16066          {
16067            "name": "cancel",
16068            "description": "Cancel an EAS Build build",
16069            "args": [],
16070            "type": {
16071              "kind": "NON_NULL",
16072              "name": null,
16073              "ofType": {
16074                "kind": "OBJECT",
16075                "name": "Build",
16076                "ofType": null
16077              }
16078            },
16079            "isDeprecated": true,
16080            "deprecationReason": "Use cancelBuild instead"
16081          },
16082          {
16083            "name": "cancelBuild",
16084            "description": "Cancel an EAS Build build",
16085            "args": [
16086              {
16087                "name": "buildId",
16088                "description": null,
16089                "type": {
16090                  "kind": "NON_NULL",
16091                  "name": null,
16092                  "ofType": {
16093                    "kind": "SCALAR",
16094                    "name": "ID",
16095                    "ofType": null
16096                  }
16097                },
16098                "defaultValue": null,
16099                "isDeprecated": false,
16100                "deprecationReason": null
16101              }
16102            ],
16103            "type": {
16104              "kind": "NON_NULL",
16105              "name": null,
16106              "ofType": {
16107                "kind": "OBJECT",
16108                "name": "Build",
16109                "ofType": null
16110              }
16111            },
16112            "isDeprecated": false,
16113            "deprecationReason": null
16114          },
16115          {
16116            "name": "createAndroidBuild",
16117            "description": "Create an Android build",
16118            "args": [
16119              {
16120                "name": "appId",
16121                "description": null,
16122                "type": {
16123                  "kind": "NON_NULL",
16124                  "name": null,
16125                  "ofType": {
16126                    "kind": "SCALAR",
16127                    "name": "ID",
16128                    "ofType": null
16129                  }
16130                },
16131                "defaultValue": null,
16132                "isDeprecated": false,
16133                "deprecationReason": null
16134              },
16135              {
16136                "name": "buildParams",
16137                "description": null,
16138                "type": {
16139                  "kind": "INPUT_OBJECT",
16140                  "name": "BuildParamsInput",
16141                  "ofType": null
16142                },
16143                "defaultValue": null,
16144                "isDeprecated": false,
16145                "deprecationReason": null
16146              },
16147              {
16148                "name": "job",
16149                "description": null,
16150                "type": {
16151                  "kind": "NON_NULL",
16152                  "name": null,
16153                  "ofType": {
16154                    "kind": "INPUT_OBJECT",
16155                    "name": "AndroidJobInput",
16156                    "ofType": null
16157                  }
16158                },
16159                "defaultValue": null,
16160                "isDeprecated": false,
16161                "deprecationReason": null
16162              },
16163              {
16164                "name": "metadata",
16165                "description": null,
16166                "type": {
16167                  "kind": "INPUT_OBJECT",
16168                  "name": "BuildMetadataInput",
16169                  "ofType": null
16170                },
16171                "defaultValue": null,
16172                "isDeprecated": false,
16173                "deprecationReason": null
16174              }
16175            ],
16176            "type": {
16177              "kind": "NON_NULL",
16178              "name": null,
16179              "ofType": {
16180                "kind": "OBJECT",
16181                "name": "CreateBuildResult",
16182                "ofType": null
16183              }
16184            },
16185            "isDeprecated": false,
16186            "deprecationReason": null
16187          },
16188          {
16189            "name": "createIosBuild",
16190            "description": "Create an iOS build",
16191            "args": [
16192              {
16193                "name": "appId",
16194                "description": null,
16195                "type": {
16196                  "kind": "NON_NULL",
16197                  "name": null,
16198                  "ofType": {
16199                    "kind": "SCALAR",
16200                    "name": "ID",
16201                    "ofType": null
16202                  }
16203                },
16204                "defaultValue": null,
16205                "isDeprecated": false,
16206                "deprecationReason": null
16207              },
16208              {
16209                "name": "buildParams",
16210                "description": null,
16211                "type": {
16212                  "kind": "INPUT_OBJECT",
16213                  "name": "BuildParamsInput",
16214                  "ofType": null
16215                },
16216                "defaultValue": null,
16217                "isDeprecated": false,
16218                "deprecationReason": null
16219              },
16220              {
16221                "name": "job",
16222                "description": null,
16223                "type": {
16224                  "kind": "NON_NULL",
16225                  "name": null,
16226                  "ofType": {
16227                    "kind": "INPUT_OBJECT",
16228                    "name": "IosJobInput",
16229                    "ofType": null
16230                  }
16231                },
16232                "defaultValue": null,
16233                "isDeprecated": false,
16234                "deprecationReason": null
16235              },
16236              {
16237                "name": "metadata",
16238                "description": null,
16239                "type": {
16240                  "kind": "INPUT_OBJECT",
16241                  "name": "BuildMetadataInput",
16242                  "ofType": null
16243                },
16244                "defaultValue": null,
16245                "isDeprecated": false,
16246                "deprecationReason": null
16247              }
16248            ],
16249            "type": {
16250              "kind": "NON_NULL",
16251              "name": null,
16252              "ofType": {
16253                "kind": "OBJECT",
16254                "name": "CreateBuildResult",
16255                "ofType": null
16256              }
16257            },
16258            "isDeprecated": false,
16259            "deprecationReason": null
16260          },
16261          {
16262            "name": "deleteBuild",
16263            "description": "Delete an EAS Build build",
16264            "args": [
16265              {
16266                "name": "buildId",
16267                "description": null,
16268                "type": {
16269                  "kind": "NON_NULL",
16270                  "name": null,
16271                  "ofType": {
16272                    "kind": "SCALAR",
16273                    "name": "ID",
16274                    "ofType": null
16275                  }
16276                },
16277                "defaultValue": null,
16278                "isDeprecated": false,
16279                "deprecationReason": null
16280              }
16281            ],
16282            "type": {
16283              "kind": "NON_NULL",
16284              "name": null,
16285              "ofType": {
16286                "kind": "OBJECT",
16287                "name": "Build",
16288                "ofType": null
16289              }
16290            },
16291            "isDeprecated": false,
16292            "deprecationReason": null
16293          },
16294          {
16295            "name": "retryAndroidBuild",
16296            "description": "Retry an Android EAS Build",
16297            "args": [
16298              {
16299                "name": "buildId",
16300                "description": null,
16301                "type": {
16302                  "kind": "NON_NULL",
16303                  "name": null,
16304                  "ofType": {
16305                    "kind": "SCALAR",
16306                    "name": "ID",
16307                    "ofType": null
16308                  }
16309                },
16310                "defaultValue": null,
16311                "isDeprecated": false,
16312                "deprecationReason": null
16313              },
16314              {
16315                "name": "jobOverrides",
16316                "description": null,
16317                "type": {
16318                  "kind": "INPUT_OBJECT",
16319                  "name": "AndroidJobOverridesInput",
16320                  "ofType": null
16321                },
16322                "defaultValue": null,
16323                "isDeprecated": false,
16324                "deprecationReason": null
16325              }
16326            ],
16327            "type": {
16328              "kind": "NON_NULL",
16329              "name": null,
16330              "ofType": {
16331                "kind": "OBJECT",
16332                "name": "Build",
16333                "ofType": null
16334              }
16335            },
16336            "isDeprecated": false,
16337            "deprecationReason": null
16338          },
16339          {
16340            "name": "retryBuild",
16341            "description": "Retry an EAS Build build",
16342            "args": [
16343              {
16344                "name": "buildId",
16345                "description": null,
16346                "type": {
16347                  "kind": "NON_NULL",
16348                  "name": null,
16349                  "ofType": {
16350                    "kind": "SCALAR",
16351                    "name": "ID",
16352                    "ofType": null
16353                  }
16354                },
16355                "defaultValue": null,
16356                "isDeprecated": false,
16357                "deprecationReason": null
16358              }
16359            ],
16360            "type": {
16361              "kind": "NON_NULL",
16362              "name": null,
16363              "ofType": {
16364                "kind": "OBJECT",
16365                "name": "Build",
16366                "ofType": null
16367              }
16368            },
16369            "isDeprecated": true,
16370            "deprecationReason": "Use retryAndroidBuild and retryIosBuild instead"
16371          },
16372          {
16373            "name": "retryIosBuild",
16374            "description": "Retry an iOS EAS Build",
16375            "args": [
16376              {
16377                "name": "buildId",
16378                "description": null,
16379                "type": {
16380                  "kind": "NON_NULL",
16381                  "name": null,
16382                  "ofType": {
16383                    "kind": "SCALAR",
16384                    "name": "ID",
16385                    "ofType": null
16386                  }
16387                },
16388                "defaultValue": null,
16389                "isDeprecated": false,
16390                "deprecationReason": null
16391              },
16392              {
16393                "name": "jobOverrides",
16394                "description": null,
16395                "type": {
16396                  "kind": "INPUT_OBJECT",
16397                  "name": "IosJobOverridesInput",
16398                  "ofType": null
16399                },
16400                "defaultValue": null,
16401                "isDeprecated": false,
16402                "deprecationReason": null
16403              }
16404            ],
16405            "type": {
16406              "kind": "NON_NULL",
16407              "name": null,
16408              "ofType": {
16409                "kind": "OBJECT",
16410                "name": "Build",
16411                "ofType": null
16412              }
16413            },
16414            "isDeprecated": false,
16415            "deprecationReason": null
16416          },
16417          {
16418            "name": "updateBuildMetadata",
16419            "description": "Update metadata for EAS Build build",
16420            "args": [
16421              {
16422                "name": "buildId",
16423                "description": null,
16424                "type": {
16425                  "kind": "NON_NULL",
16426                  "name": null,
16427                  "ofType": {
16428                    "kind": "SCALAR",
16429                    "name": "ID",
16430                    "ofType": null
16431                  }
16432                },
16433                "defaultValue": null,
16434                "isDeprecated": false,
16435                "deprecationReason": null
16436              },
16437              {
16438                "name": "metadata",
16439                "description": null,
16440                "type": {
16441                  "kind": "NON_NULL",
16442                  "name": null,
16443                  "ofType": {
16444                    "kind": "INPUT_OBJECT",
16445                    "name": "BuildMetadataInput",
16446                    "ofType": null
16447                  }
16448                },
16449                "defaultValue": null,
16450                "isDeprecated": false,
16451                "deprecationReason": null
16452              }
16453            ],
16454            "type": {
16455              "kind": "NON_NULL",
16456              "name": null,
16457              "ofType": {
16458                "kind": "OBJECT",
16459                "name": "Build",
16460                "ofType": null
16461              }
16462            },
16463            "isDeprecated": false,
16464            "deprecationReason": null
16465          }
16466        ],
16467        "inputFields": null,
16468        "interfaces": [],
16469        "enumValues": null,
16470        "possibleTypes": null
16471      },
16472      {
16473        "kind": "INTERFACE",
16474        "name": "BuildOrBuildJob",
16475        "description": null,
16476        "fields": [
16477          {
16478            "name": "id",
16479            "description": null,
16480            "args": [],
16481            "type": {
16482              "kind": "NON_NULL",
16483              "name": null,
16484              "ofType": {
16485                "kind": "SCALAR",
16486                "name": "ID",
16487                "ofType": null
16488              }
16489            },
16490            "isDeprecated": false,
16491            "deprecationReason": null
16492          }
16493        ],
16494        "inputFields": null,
16495        "interfaces": [],
16496        "enumValues": null,
16497        "possibleTypes": [
16498          {
16499            "kind": "OBJECT",
16500            "name": "Build",
16501            "ofType": null
16502          },
16503          {
16504            "kind": "OBJECT",
16505            "name": "BuildJob",
16506            "ofType": null
16507          }
16508        ]
16509      },
16510      {
16511        "kind": "OBJECT",
16512        "name": "BuildOrBuildJobQuery",
16513        "description": null,
16514        "fields": [
16515          {
16516            "name": "byId",
16517            "description": "Look up EAS Build or Classic Build Job by ID",
16518            "args": [
16519              {
16520                "name": "buildOrBuildJobId",
16521                "description": null,
16522                "type": {
16523                  "kind": "NON_NULL",
16524                  "name": null,
16525                  "ofType": {
16526                    "kind": "SCALAR",
16527                    "name": "ID",
16528                    "ofType": null
16529                  }
16530                },
16531                "defaultValue": null,
16532                "isDeprecated": false,
16533                "deprecationReason": null
16534              }
16535            ],
16536            "type": {
16537              "kind": "NON_NULL",
16538              "name": null,
16539              "ofType": {
16540                "kind": "UNION",
16541                "name": "EASBuildOrClassicBuildJob",
16542                "ofType": null
16543              }
16544            },
16545            "isDeprecated": false,
16546            "deprecationReason": null
16547          }
16548        ],
16549        "inputFields": null,
16550        "interfaces": [],
16551        "enumValues": null,
16552        "possibleTypes": null
16553      },
16554      {
16555        "kind": "INPUT_OBJECT",
16556        "name": "BuildParamsInput",
16557        "description": null,
16558        "fields": null,
16559        "inputFields": [
16560          {
16561            "name": "reactNativeVersion",
16562            "description": null,
16563            "type": {
16564              "kind": "SCALAR",
16565              "name": "String",
16566              "ofType": null
16567            },
16568            "defaultValue": null,
16569            "isDeprecated": false,
16570            "deprecationReason": null
16571          },
16572          {
16573            "name": "resourceClass",
16574            "description": null,
16575            "type": {
16576              "kind": "NON_NULL",
16577              "name": null,
16578              "ofType": {
16579                "kind": "ENUM",
16580                "name": "BuildResourceClass",
16581                "ofType": null
16582              }
16583            },
16584            "defaultValue": null,
16585            "isDeprecated": false,
16586            "deprecationReason": null
16587          },
16588          {
16589            "name": "sdkVersion",
16590            "description": null,
16591            "type": {
16592              "kind": "SCALAR",
16593              "name": "String",
16594              "ofType": null
16595            },
16596            "defaultValue": null,
16597            "isDeprecated": false,
16598            "deprecationReason": null
16599          }
16600        ],
16601        "interfaces": null,
16602        "enumValues": null,
16603        "possibleTypes": null
16604      },
16605      {
16606        "kind": "ENUM",
16607        "name": "BuildPriority",
16608        "description": null,
16609        "fields": null,
16610        "inputFields": null,
16611        "interfaces": null,
16612        "enumValues": [
16613          {
16614            "name": "HIGH",
16615            "description": null,
16616            "isDeprecated": false,
16617            "deprecationReason": null
16618          },
16619          {
16620            "name": "NORMAL",
16621            "description": null,
16622            "isDeprecated": false,
16623            "deprecationReason": null
16624          },
16625          {
16626            "name": "NORMAL_PLUS",
16627            "description": null,
16628            "isDeprecated": false,
16629            "deprecationReason": null
16630          }
16631        ],
16632        "possibleTypes": null
16633      },
16634      {
16635        "kind": "OBJECT",
16636        "name": "BuildPublicData",
16637        "description": "Publicly visible data for a Build.",
16638        "fields": [
16639          {
16640            "name": "artifacts",
16641            "description": null,
16642            "args": [],
16643            "type": {
16644              "kind": "NON_NULL",
16645              "name": null,
16646              "ofType": {
16647                "kind": "OBJECT",
16648                "name": "PublicArtifacts",
16649                "ofType": null
16650              }
16651            },
16652            "isDeprecated": false,
16653            "deprecationReason": null
16654          },
16655          {
16656            "name": "distribution",
16657            "description": null,
16658            "args": [],
16659            "type": {
16660              "kind": "ENUM",
16661              "name": "DistributionType",
16662              "ofType": null
16663            },
16664            "isDeprecated": false,
16665            "deprecationReason": null
16666          },
16667          {
16668            "name": "id",
16669            "description": null,
16670            "args": [],
16671            "type": {
16672              "kind": "NON_NULL",
16673              "name": null,
16674              "ofType": {
16675                "kind": "SCALAR",
16676                "name": "ID",
16677                "ofType": null
16678              }
16679            },
16680            "isDeprecated": false,
16681            "deprecationReason": null
16682          },
16683          {
16684            "name": "platform",
16685            "description": null,
16686            "args": [],
16687            "type": {
16688              "kind": "NON_NULL",
16689              "name": null,
16690              "ofType": {
16691                "kind": "ENUM",
16692                "name": "AppPlatform",
16693                "ofType": null
16694              }
16695            },
16696            "isDeprecated": false,
16697            "deprecationReason": null
16698          },
16699          {
16700            "name": "project",
16701            "description": null,
16702            "args": [],
16703            "type": {
16704              "kind": "NON_NULL",
16705              "name": null,
16706              "ofType": {
16707                "kind": "OBJECT",
16708                "name": "ProjectPublicData",
16709                "ofType": null
16710              }
16711            },
16712            "isDeprecated": false,
16713            "deprecationReason": null
16714          },
16715          {
16716            "name": "status",
16717            "description": null,
16718            "args": [],
16719            "type": {
16720              "kind": "NON_NULL",
16721              "name": null,
16722              "ofType": {
16723                "kind": "ENUM",
16724                "name": "BuildStatus",
16725                "ofType": null
16726              }
16727            },
16728            "isDeprecated": false,
16729            "deprecationReason": null
16730          }
16731        ],
16732        "inputFields": null,
16733        "interfaces": [],
16734        "enumValues": null,
16735        "possibleTypes": null
16736      },
16737      {
16738        "kind": "OBJECT",
16739        "name": "BuildPublicDataQuery",
16740        "description": null,
16741        "fields": [
16742          {
16743            "name": "byId",
16744            "description": "Get BuildPublicData by ID",
16745            "args": [
16746              {
16747                "name": "id",
16748                "description": null,
16749                "type": {
16750                  "kind": "NON_NULL",
16751                  "name": null,
16752                  "ofType": {
16753                    "kind": "SCALAR",
16754                    "name": "ID",
16755                    "ofType": null
16756                  }
16757                },
16758                "defaultValue": null,
16759                "isDeprecated": false,
16760                "deprecationReason": null
16761              }
16762            ],
16763            "type": {
16764              "kind": "OBJECT",
16765              "name": "BuildPublicData",
16766              "ofType": null
16767            },
16768            "isDeprecated": false,
16769            "deprecationReason": null
16770          }
16771        ],
16772        "inputFields": null,
16773        "interfaces": [],
16774        "enumValues": null,
16775        "possibleTypes": null
16776      },
16777      {
16778        "kind": "OBJECT",
16779        "name": "BuildQuery",
16780        "description": null,
16781        "fields": [
16782          {
16783            "name": "all",
16784            "description": "Get all builds.\nBy default, they are sorted from latest to oldest.\nAvailable only for admin users.",
16785            "args": [
16786              {
16787                "name": "limit",
16788                "description": null,
16789                "type": {
16790                  "kind": "SCALAR",
16791                  "name": "Int",
16792                  "ofType": null
16793                },
16794                "defaultValue": null,
16795                "isDeprecated": false,
16796                "deprecationReason": null
16797              },
16798              {
16799                "name": "offset",
16800                "description": null,
16801                "type": {
16802                  "kind": "SCALAR",
16803                  "name": "Int",
16804                  "ofType": null
16805                },
16806                "defaultValue": null,
16807                "isDeprecated": false,
16808                "deprecationReason": null
16809              },
16810              {
16811                "name": "order",
16812                "description": null,
16813                "type": {
16814                  "kind": "ENUM",
16815                  "name": "Order",
16816                  "ofType": null
16817                },
16818                "defaultValue": null,
16819                "isDeprecated": false,
16820                "deprecationReason": null
16821              },
16822              {
16823                "name": "statuses",
16824                "description": null,
16825                "type": {
16826                  "kind": "LIST",
16827                  "name": null,
16828                  "ofType": {
16829                    "kind": "NON_NULL",
16830                    "name": null,
16831                    "ofType": {
16832                      "kind": "ENUM",
16833                      "name": "BuildStatus",
16834                      "ofType": null
16835                    }
16836                  }
16837                },
16838                "defaultValue": null,
16839                "isDeprecated": false,
16840                "deprecationReason": null
16841              }
16842            ],
16843            "type": {
16844              "kind": "NON_NULL",
16845              "name": null,
16846              "ofType": {
16847                "kind": "LIST",
16848                "name": null,
16849                "ofType": {
16850                  "kind": "NON_NULL",
16851                  "name": null,
16852                  "ofType": {
16853                    "kind": "OBJECT",
16854                    "name": "Build",
16855                    "ofType": null
16856                  }
16857                }
16858              }
16859            },
16860            "isDeprecated": false,
16861            "deprecationReason": null
16862          },
16863          {
16864            "name": "allForApp",
16865            "description": "Get all builds for a specific app.\nThey are sorted from latest to oldest.",
16866            "args": [
16867              {
16868                "name": "appId",
16869                "description": null,
16870                "type": {
16871                  "kind": "NON_NULL",
16872                  "name": null,
16873                  "ofType": {
16874                    "kind": "SCALAR",
16875                    "name": "String",
16876                    "ofType": null
16877                  }
16878                },
16879                "defaultValue": null,
16880                "isDeprecated": false,
16881                "deprecationReason": null
16882              },
16883              {
16884                "name": "limit",
16885                "description": null,
16886                "type": {
16887                  "kind": "SCALAR",
16888                  "name": "Int",
16889                  "ofType": null
16890                },
16891                "defaultValue": null,
16892                "isDeprecated": false,
16893                "deprecationReason": null
16894              },
16895              {
16896                "name": "offset",
16897                "description": null,
16898                "type": {
16899                  "kind": "SCALAR",
16900                  "name": "Int",
16901                  "ofType": null
16902                },
16903                "defaultValue": null,
16904                "isDeprecated": false,
16905                "deprecationReason": null
16906              },
16907              {
16908                "name": "platform",
16909                "description": null,
16910                "type": {
16911                  "kind": "ENUM",
16912                  "name": "AppPlatform",
16913                  "ofType": null
16914                },
16915                "defaultValue": null,
16916                "isDeprecated": false,
16917                "deprecationReason": null
16918              },
16919              {
16920                "name": "status",
16921                "description": null,
16922                "type": {
16923                  "kind": "ENUM",
16924                  "name": "BuildStatus",
16925                  "ofType": null
16926                },
16927                "defaultValue": null,
16928                "isDeprecated": false,
16929                "deprecationReason": null
16930              }
16931            ],
16932            "type": {
16933              "kind": "NON_NULL",
16934              "name": null,
16935              "ofType": {
16936                "kind": "LIST",
16937                "name": null,
16938                "ofType": {
16939                  "kind": "OBJECT",
16940                  "name": "Build",
16941                  "ofType": null
16942                }
16943              }
16944            },
16945            "isDeprecated": true,
16946            "deprecationReason": "Use App.builds instead"
16947          },
16948          {
16949            "name": "byId",
16950            "description": "Look up EAS Build by build ID",
16951            "args": [
16952              {
16953                "name": "buildId",
16954                "description": null,
16955                "type": {
16956                  "kind": "NON_NULL",
16957                  "name": null,
16958                  "ofType": {
16959                    "kind": "SCALAR",
16960                    "name": "ID",
16961                    "ofType": null
16962                  }
16963                },
16964                "defaultValue": null,
16965                "isDeprecated": false,
16966                "deprecationReason": null
16967              }
16968            ],
16969            "type": {
16970              "kind": "NON_NULL",
16971              "name": null,
16972              "ofType": {
16973                "kind": "OBJECT",
16974                "name": "Build",
16975                "ofType": null
16976              }
16977            },
16978            "isDeprecated": false,
16979            "deprecationReason": null
16980          }
16981        ],
16982        "inputFields": null,
16983        "interfaces": [],
16984        "enumValues": null,
16985        "possibleTypes": null
16986      },
16987      {
16988        "kind": "INPUT_OBJECT",
16989        "name": "BuildResignInput",
16990        "description": null,
16991        "fields": null,
16992        "inputFields": [
16993          {
16994            "name": "applicationArchiveSource",
16995            "description": null,
16996            "type": {
16997              "kind": "INPUT_OBJECT",
16998              "name": "ProjectArchiveSourceInput",
16999              "ofType": null
17000            },
17001            "defaultValue": null,
17002            "isDeprecated": false,
17003            "deprecationReason": null
17004          }
17005        ],
17006        "interfaces": null,
17007        "enumValues": null,
17008        "possibleTypes": null
17009      },
17010      {
17011        "kind": "ENUM",
17012        "name": "BuildResourceClass",
17013        "description": null,
17014        "fields": null,
17015        "inputFields": null,
17016        "interfaces": null,
17017        "enumValues": [
17018          {
17019            "name": "ANDROID_DEFAULT",
17020            "description": null,
17021            "isDeprecated": false,
17022            "deprecationReason": null
17023          },
17024          {
17025            "name": "ANDROID_LARGE",
17026            "description": null,
17027            "isDeprecated": false,
17028            "deprecationReason": null
17029          },
17030          {
17031            "name": "ANDROID_MEDIUM",
17032            "description": null,
17033            "isDeprecated": false,
17034            "deprecationReason": null
17035          },
17036          {
17037            "name": "IOS_DEFAULT",
17038            "description": null,
17039            "isDeprecated": false,
17040            "deprecationReason": null
17041          },
17042          {
17043            "name": "IOS_INTEL_LARGE",
17044            "description": null,
17045            "isDeprecated": true,
17046            "deprecationReason": "Use IOS_INTEL_MEDIUM instead"
17047          },
17048          {
17049            "name": "IOS_INTEL_MEDIUM",
17050            "description": null,
17051            "isDeprecated": false,
17052            "deprecationReason": null
17053          },
17054          {
17055            "name": "IOS_LARGE",
17056            "description": null,
17057            "isDeprecated": false,
17058            "deprecationReason": null
17059          },
17060          {
17061            "name": "IOS_M1_LARGE",
17062            "description": null,
17063            "isDeprecated": true,
17064            "deprecationReason": "Use IOS_M_MEDIUM instead"
17065          },
17066          {
17067            "name": "IOS_M1_MEDIUM",
17068            "description": null,
17069            "isDeprecated": false,
17070            "deprecationReason": null
17071          },
17072          {
17073            "name": "IOS_MEDIUM",
17074            "description": null,
17075            "isDeprecated": false,
17076            "deprecationReason": null
17077          },
17078          {
17079            "name": "IOS_M_LARGE",
17080            "description": null,
17081            "isDeprecated": false,
17082            "deprecationReason": null
17083          },
17084          {
17085            "name": "IOS_M_MEDIUM",
17086            "description": null,
17087            "isDeprecated": false,
17088            "deprecationReason": null
17089          },
17090          {
17091            "name": "LEGACY",
17092            "description": null,
17093            "isDeprecated": false,
17094            "deprecationReason": null
17095          }
17096        ],
17097        "possibleTypes": null
17098      },
17099      {
17100        "kind": "ENUM",
17101        "name": "BuildRetryDisabledReason",
17102        "description": null,
17103        "fields": null,
17104        "inputFields": null,
17105        "interfaces": null,
17106        "enumValues": [
17107          {
17108            "name": "ALREADY_RETRIED",
17109            "description": null,
17110            "isDeprecated": false,
17111            "deprecationReason": null
17112          },
17113          {
17114            "name": "INVALID_STATUS",
17115            "description": null,
17116            "isDeprecated": false,
17117            "deprecationReason": null
17118          },
17119          {
17120            "name": "IS_GITHUB_BUILD",
17121            "description": null,
17122            "isDeprecated": false,
17123            "deprecationReason": null
17124          },
17125          {
17126            "name": "NOT_COMPLETED_YET",
17127            "description": null,
17128            "isDeprecated": false,
17129            "deprecationReason": null
17130          },
17131          {
17132            "name": "TOO_MUCH_TIME_ELAPSED",
17133            "description": null,
17134            "isDeprecated": false,
17135            "deprecationReason": null
17136          }
17137        ],
17138        "possibleTypes": null
17139      },
17140      {
17141        "kind": "ENUM",
17142        "name": "BuildStatus",
17143        "description": null,
17144        "fields": null,
17145        "inputFields": null,
17146        "interfaces": null,
17147        "enumValues": [
17148          {
17149            "name": "CANCELED",
17150            "description": null,
17151            "isDeprecated": false,
17152            "deprecationReason": null
17153          },
17154          {
17155            "name": "ERRORED",
17156            "description": null,
17157            "isDeprecated": false,
17158            "deprecationReason": null
17159          },
17160          {
17161            "name": "FINISHED",
17162            "description": null,
17163            "isDeprecated": false,
17164            "deprecationReason": null
17165          },
17166          {
17167            "name": "IN_PROGRESS",
17168            "description": null,
17169            "isDeprecated": false,
17170            "deprecationReason": null
17171          },
17172          {
17173            "name": "IN_QUEUE",
17174            "description": null,
17175            "isDeprecated": false,
17176            "deprecationReason": null
17177          },
17178          {
17179            "name": "NEW",
17180            "description": null,
17181            "isDeprecated": false,
17182            "deprecationReason": null
17183          },
17184          {
17185            "name": "PENDING_CANCEL",
17186            "description": null,
17187            "isDeprecated": false,
17188            "deprecationReason": null
17189          }
17190        ],
17191        "possibleTypes": null
17192      },
17193      {
17194        "kind": "ENUM",
17195        "name": "BuildTrigger",
17196        "description": null,
17197        "fields": null,
17198        "inputFields": null,
17199        "interfaces": null,
17200        "enumValues": [
17201          {
17202            "name": "EAS_CLI",
17203            "description": null,
17204            "isDeprecated": false,
17205            "deprecationReason": null
17206          },
17207          {
17208            "name": "GIT_BASED_INTEGRATION",
17209            "description": null,
17210            "isDeprecated": false,
17211            "deprecationReason": null
17212          }
17213        ],
17214        "possibleTypes": null
17215      },
17216      {
17217        "kind": "INPUT_OBJECT",
17218        "name": "BuildUpdatesInput",
17219        "description": null,
17220        "fields": null,
17221        "inputFields": [
17222          {
17223            "name": "channel",
17224            "description": null,
17225            "type": {
17226              "kind": "SCALAR",
17227              "name": "String",
17228              "ofType": null
17229            },
17230            "defaultValue": null,
17231            "isDeprecated": false,
17232            "deprecationReason": null
17233          }
17234        ],
17235        "interfaces": null,
17236        "enumValues": null,
17237        "possibleTypes": null
17238      },
17239      {
17240        "kind": "ENUM",
17241        "name": "BuildWorkflow",
17242        "description": null,
17243        "fields": null,
17244        "inputFields": null,
17245        "interfaces": null,
17246        "enumValues": [
17247          {
17248            "name": "GENERIC",
17249            "description": null,
17250            "isDeprecated": false,
17251            "deprecationReason": null
17252          },
17253          {
17254            "name": "MANAGED",
17255            "description": null,
17256            "isDeprecated": false,
17257            "deprecationReason": null
17258          },
17259          {
17260            "name": "UNKNOWN",
17261            "description": null,
17262            "isDeprecated": false,
17263            "deprecationReason": null
17264          }
17265        ],
17266        "possibleTypes": null
17267      },
17268      {
17269        "kind": "OBJECT",
17270        "name": "Card",
17271        "description": null,
17272        "fields": [
17273          {
17274            "name": "brand",
17275            "description": null,
17276            "args": [],
17277            "type": {
17278              "kind": "SCALAR",
17279              "name": "String",
17280              "ofType": null
17281            },
17282            "isDeprecated": false,
17283            "deprecationReason": null
17284          },
17285          {
17286            "name": "cardHolder",
17287            "description": null,
17288            "args": [],
17289            "type": {
17290              "kind": "SCALAR",
17291              "name": "String",
17292              "ofType": null
17293            },
17294            "isDeprecated": false,
17295            "deprecationReason": null
17296          },
17297          {
17298            "name": "expMonth",
17299            "description": null,
17300            "args": [],
17301            "type": {
17302              "kind": "SCALAR",
17303              "name": "Int",
17304              "ofType": null
17305            },
17306            "isDeprecated": false,
17307            "deprecationReason": null
17308          },
17309          {
17310            "name": "expYear",
17311            "description": null,
17312            "args": [],
17313            "type": {
17314              "kind": "SCALAR",
17315              "name": "Int",
17316              "ofType": null
17317            },
17318            "isDeprecated": false,
17319            "deprecationReason": null
17320          },
17321          {
17322            "name": "last4",
17323            "description": null,
17324            "args": [],
17325            "type": {
17326              "kind": "SCALAR",
17327              "name": "String",
17328              "ofType": null
17329            },
17330            "isDeprecated": false,
17331            "deprecationReason": null
17332          }
17333        ],
17334        "inputFields": null,
17335        "interfaces": [],
17336        "enumValues": null,
17337        "possibleTypes": null
17338      },
17339      {
17340        "kind": "INPUT_OBJECT",
17341        "name": "ChannelFilterInput",
17342        "description": null,
17343        "fields": null,
17344        "inputFields": [
17345          {
17346            "name": "searchTerm",
17347            "description": null,
17348            "type": {
17349              "kind": "SCALAR",
17350              "name": "String",
17351              "ofType": null
17352            },
17353            "defaultValue": null,
17354            "isDeprecated": false,
17355            "deprecationReason": null
17356          }
17357        ],
17358        "interfaces": null,
17359        "enumValues": null,
17360        "possibleTypes": null
17361      },
17362      {
17363        "kind": "OBJECT",
17364        "name": "Charge",
17365        "description": null,
17366        "fields": [
17367          {
17368            "name": "amount",
17369            "description": null,
17370            "args": [],
17371            "type": {
17372              "kind": "NON_NULL",
17373              "name": null,
17374              "ofType": {
17375                "kind": "SCALAR",
17376                "name": "Int",
17377                "ofType": null
17378              }
17379            },
17380            "isDeprecated": false,
17381            "deprecationReason": null
17382          },
17383          {
17384            "name": "createdAt",
17385            "description": null,
17386            "args": [],
17387            "type": {
17388              "kind": "NON_NULL",
17389              "name": null,
17390              "ofType": {
17391                "kind": "SCALAR",
17392                "name": "DateTime",
17393                "ofType": null
17394              }
17395            },
17396            "isDeprecated": false,
17397            "deprecationReason": null
17398          },
17399          {
17400            "name": "id",
17401            "description": null,
17402            "args": [],
17403            "type": {
17404              "kind": "NON_NULL",
17405              "name": null,
17406              "ofType": {
17407                "kind": "SCALAR",
17408                "name": "ID",
17409                "ofType": null
17410              }
17411            },
17412            "isDeprecated": false,
17413            "deprecationReason": null
17414          },
17415          {
17416            "name": "invoiceId",
17417            "description": null,
17418            "args": [],
17419            "type": {
17420              "kind": "SCALAR",
17421              "name": "String",
17422              "ofType": null
17423            },
17424            "isDeprecated": false,
17425            "deprecationReason": null
17426          },
17427          {
17428            "name": "paid",
17429            "description": null,
17430            "args": [],
17431            "type": {
17432              "kind": "NON_NULL",
17433              "name": null,
17434              "ofType": {
17435                "kind": "SCALAR",
17436                "name": "Boolean",
17437                "ofType": null
17438              }
17439            },
17440            "isDeprecated": false,
17441            "deprecationReason": null
17442          },
17443          {
17444            "name": "receiptUrl",
17445            "description": null,
17446            "args": [],
17447            "type": {
17448              "kind": "SCALAR",
17449              "name": "String",
17450              "ofType": null
17451            },
17452            "isDeprecated": false,
17453            "deprecationReason": null
17454          },
17455          {
17456            "name": "wasRefunded",
17457            "description": null,
17458            "args": [],
17459            "type": {
17460              "kind": "NON_NULL",
17461              "name": null,
17462              "ofType": {
17463                "kind": "SCALAR",
17464                "name": "Boolean",
17465                "ofType": null
17466              }
17467            },
17468            "isDeprecated": false,
17469            "deprecationReason": null
17470          }
17471        ],
17472        "inputFields": null,
17473        "interfaces": [],
17474        "enumValues": null,
17475        "possibleTypes": null
17476      },
17477      {
17478        "kind": "OBJECT",
17479        "name": "CodeSigningInfo",
17480        "description": null,
17481        "fields": [
17482          {
17483            "name": "alg",
17484            "description": null,
17485            "args": [],
17486            "type": {
17487              "kind": "NON_NULL",
17488              "name": null,
17489              "ofType": {
17490                "kind": "SCALAR",
17491                "name": "String",
17492                "ofType": null
17493              }
17494            },
17495            "isDeprecated": false,
17496            "deprecationReason": null
17497          },
17498          {
17499            "name": "keyid",
17500            "description": null,
17501            "args": [],
17502            "type": {
17503              "kind": "NON_NULL",
17504              "name": null,
17505              "ofType": {
17506                "kind": "SCALAR",
17507                "name": "String",
17508                "ofType": null
17509              }
17510            },
17511            "isDeprecated": false,
17512            "deprecationReason": null
17513          },
17514          {
17515            "name": "sig",
17516            "description": null,
17517            "args": [],
17518            "type": {
17519              "kind": "NON_NULL",
17520              "name": null,
17521              "ofType": {
17522                "kind": "SCALAR",
17523                "name": "String",
17524                "ofType": null
17525              }
17526            },
17527            "isDeprecated": false,
17528            "deprecationReason": null
17529          }
17530        ],
17531        "inputFields": null,
17532        "interfaces": [],
17533        "enumValues": null,
17534        "possibleTypes": null
17535      },
17536      {
17537        "kind": "INPUT_OBJECT",
17538        "name": "CodeSigningInfoInput",
17539        "description": null,
17540        "fields": null,
17541        "inputFields": [
17542          {
17543            "name": "alg",
17544            "description": null,
17545            "type": {
17546              "kind": "NON_NULL",
17547              "name": null,
17548              "ofType": {
17549                "kind": "SCALAR",
17550                "name": "String",
17551                "ofType": null
17552              }
17553            },
17554            "defaultValue": null,
17555            "isDeprecated": false,
17556            "deprecationReason": null
17557          },
17558          {
17559            "name": "keyid",
17560            "description": null,
17561            "type": {
17562              "kind": "NON_NULL",
17563              "name": null,
17564              "ofType": {
17565                "kind": "SCALAR",
17566                "name": "String",
17567                "ofType": null
17568              }
17569            },
17570            "defaultValue": null,
17571            "isDeprecated": false,
17572            "deprecationReason": null
17573          },
17574          {
17575            "name": "sig",
17576            "description": null,
17577            "type": {
17578              "kind": "NON_NULL",
17579              "name": null,
17580              "ofType": {
17581                "kind": "SCALAR",
17582                "name": "String",
17583                "ofType": null
17584              }
17585            },
17586            "defaultValue": null,
17587            "isDeprecated": false,
17588            "deprecationReason": null
17589          }
17590        ],
17591        "interfaces": null,
17592        "enumValues": null,
17593        "possibleTypes": null
17594      },
17595      {
17596        "kind": "OBJECT",
17597        "name": "Concurrencies",
17598        "description": null,
17599        "fields": [
17600          {
17601            "name": "android",
17602            "description": null,
17603            "args": [],
17604            "type": {
17605              "kind": "NON_NULL",
17606              "name": null,
17607              "ofType": {
17608                "kind": "SCALAR",
17609                "name": "Int",
17610                "ofType": null
17611              }
17612            },
17613            "isDeprecated": false,
17614            "deprecationReason": null
17615          },
17616          {
17617            "name": "ios",
17618            "description": null,
17619            "args": [],
17620            "type": {
17621              "kind": "NON_NULL",
17622              "name": null,
17623              "ofType": {
17624                "kind": "SCALAR",
17625                "name": "Int",
17626                "ofType": null
17627              }
17628            },
17629            "isDeprecated": false,
17630            "deprecationReason": null
17631          },
17632          {
17633            "name": "total",
17634            "description": null,
17635            "args": [],
17636            "type": {
17637              "kind": "NON_NULL",
17638              "name": null,
17639              "ofType": {
17640                "kind": "SCALAR",
17641                "name": "Int",
17642                "ofType": null
17643              }
17644            },
17645            "isDeprecated": false,
17646            "deprecationReason": null
17647          }
17648        ],
17649        "inputFields": null,
17650        "interfaces": [],
17651        "enumValues": null,
17652        "possibleTypes": null
17653      },
17654      {
17655        "kind": "INPUT_OBJECT",
17656        "name": "CreateAccessTokenInput",
17657        "description": null,
17658        "fields": null,
17659        "inputFields": [
17660          {
17661            "name": "actorID",
17662            "description": null,
17663            "type": {
17664              "kind": "NON_NULL",
17665              "name": null,
17666              "ofType": {
17667                "kind": "SCALAR",
17668                "name": "ID",
17669                "ofType": null
17670              }
17671            },
17672            "defaultValue": null,
17673            "isDeprecated": false,
17674            "deprecationReason": null
17675          },
17676          {
17677            "name": "note",
17678            "description": null,
17679            "type": {
17680              "kind": "SCALAR",
17681              "name": "String",
17682              "ofType": null
17683            },
17684            "defaultValue": null,
17685            "isDeprecated": false,
17686            "deprecationReason": null
17687          }
17688        ],
17689        "interfaces": null,
17690        "enumValues": null,
17691        "possibleTypes": null
17692      },
17693      {
17694        "kind": "OBJECT",
17695        "name": "CreateAccessTokenResponse",
17696        "description": null,
17697        "fields": [
17698          {
17699            "name": "accessToken",
17700            "description": "AccessToken created",
17701            "args": [],
17702            "type": {
17703              "kind": "NON_NULL",
17704              "name": null,
17705              "ofType": {
17706                "kind": "OBJECT",
17707                "name": "AccessToken",
17708                "ofType": null
17709              }
17710            },
17711            "isDeprecated": false,
17712            "deprecationReason": null
17713          },
17714          {
17715            "name": "token",
17716            "description": "Full token string to be used for authentication",
17717            "args": [],
17718            "type": {
17719              "kind": "NON_NULL",
17720              "name": null,
17721              "ofType": {
17722                "kind": "SCALAR",
17723                "name": "String",
17724                "ofType": null
17725              }
17726            },
17727            "isDeprecated": false,
17728            "deprecationReason": null
17729          }
17730        ],
17731        "inputFields": null,
17732        "interfaces": [],
17733        "enumValues": null,
17734        "possibleTypes": null
17735      },
17736      {
17737        "kind": "INPUT_OBJECT",
17738        "name": "CreateAndroidSubmissionInput",
17739        "description": null,
17740        "fields": null,
17741        "inputFields": [
17742          {
17743            "name": "appId",
17744            "description": null,
17745            "type": {
17746              "kind": "NON_NULL",
17747              "name": null,
17748              "ofType": {
17749                "kind": "SCALAR",
17750                "name": "ID",
17751                "ofType": null
17752              }
17753            },
17754            "defaultValue": null,
17755            "isDeprecated": false,
17756            "deprecationReason": null
17757          },
17758          {
17759            "name": "archiveSource",
17760            "description": null,
17761            "type": {
17762              "kind": "INPUT_OBJECT",
17763              "name": "SubmissionArchiveSourceInput",
17764              "ofType": null
17765            },
17766            "defaultValue": null,
17767            "isDeprecated": false,
17768            "deprecationReason": null
17769          },
17770          {
17771            "name": "archiveUrl",
17772            "description": null,
17773            "type": {
17774              "kind": "SCALAR",
17775              "name": "String",
17776              "ofType": null
17777            },
17778            "defaultValue": null,
17779            "isDeprecated": false,
17780            "deprecationReason": null
17781          },
17782          {
17783            "name": "config",
17784            "description": null,
17785            "type": {
17786              "kind": "NON_NULL",
17787              "name": null,
17788              "ofType": {
17789                "kind": "INPUT_OBJECT",
17790                "name": "AndroidSubmissionConfigInput",
17791                "ofType": null
17792              }
17793            },
17794            "defaultValue": null,
17795            "isDeprecated": false,
17796            "deprecationReason": null
17797          },
17798          {
17799            "name": "submittedBuildId",
17800            "description": null,
17801            "type": {
17802              "kind": "SCALAR",
17803              "name": "ID",
17804              "ofType": null
17805            },
17806            "defaultValue": null,
17807            "isDeprecated": false,
17808            "deprecationReason": null
17809          }
17810        ],
17811        "interfaces": null,
17812        "enumValues": null,
17813        "possibleTypes": null
17814      },
17815      {
17816        "kind": "OBJECT",
17817        "name": "CreateBuildResult",
17818        "description": null,
17819        "fields": [
17820          {
17821            "name": "build",
17822            "description": null,
17823            "args": [],
17824            "type": {
17825              "kind": "NON_NULL",
17826              "name": null,
17827              "ofType": {
17828                "kind": "OBJECT",
17829                "name": "Build",
17830                "ofType": null
17831              }
17832            },
17833            "isDeprecated": false,
17834            "deprecationReason": null
17835          },
17836          {
17837            "name": "deprecationInfo",
17838            "description": null,
17839            "args": [],
17840            "type": {
17841              "kind": "OBJECT",
17842              "name": "EASBuildDeprecationInfo",
17843              "ofType": null
17844            },
17845            "isDeprecated": false,
17846            "deprecationReason": null
17847          }
17848        ],
17849        "inputFields": null,
17850        "interfaces": [],
17851        "enumValues": null,
17852        "possibleTypes": null
17853      },
17854      {
17855        "kind": "INPUT_OBJECT",
17856        "name": "CreateEnvironmentSecretInput",
17857        "description": null,
17858        "fields": null,
17859        "inputFields": [
17860          {
17861            "name": "name",
17862            "description": null,
17863            "type": {
17864              "kind": "NON_NULL",
17865              "name": null,
17866              "ofType": {
17867                "kind": "SCALAR",
17868                "name": "String",
17869                "ofType": null
17870              }
17871            },
17872            "defaultValue": null,
17873            "isDeprecated": false,
17874            "deprecationReason": null
17875          },
17876          {
17877            "name": "type",
17878            "description": null,
17879            "type": {
17880              "kind": "ENUM",
17881              "name": "EnvironmentSecretType",
17882              "ofType": null
17883            },
17884            "defaultValue": null,
17885            "isDeprecated": false,
17886            "deprecationReason": null
17887          },
17888          {
17889            "name": "value",
17890            "description": null,
17891            "type": {
17892              "kind": "NON_NULL",
17893              "name": null,
17894              "ofType": {
17895                "kind": "SCALAR",
17896                "name": "String",
17897                "ofType": null
17898              }
17899            },
17900            "defaultValue": null,
17901            "isDeprecated": false,
17902            "deprecationReason": null
17903          }
17904        ],
17905        "interfaces": null,
17906        "enumValues": null,
17907        "possibleTypes": null
17908      },
17909      {
17910        "kind": "INPUT_OBJECT",
17911        "name": "CreateGitHubAppInstallationInput",
17912        "description": null,
17913        "fields": null,
17914        "inputFields": [
17915          {
17916            "name": "accountId",
17917            "description": null,
17918            "type": {
17919              "kind": "NON_NULL",
17920              "name": null,
17921              "ofType": {
17922                "kind": "SCALAR",
17923                "name": "ID",
17924                "ofType": null
17925              }
17926            },
17927            "defaultValue": null,
17928            "isDeprecated": false,
17929            "deprecationReason": null
17930          },
17931          {
17932            "name": "installationIdentifier",
17933            "description": null,
17934            "type": {
17935              "kind": "NON_NULL",
17936              "name": null,
17937              "ofType": {
17938                "kind": "SCALAR",
17939                "name": "Int",
17940                "ofType": null
17941              }
17942            },
17943            "defaultValue": null,
17944            "isDeprecated": false,
17945            "deprecationReason": null
17946          }
17947        ],
17948        "interfaces": null,
17949        "enumValues": null,
17950        "possibleTypes": null
17951      },
17952      {
17953        "kind": "INPUT_OBJECT",
17954        "name": "CreateGitHubRepositoryInput",
17955        "description": null,
17956        "fields": null,
17957        "inputFields": [
17958          {
17959            "name": "appId",
17960            "description": null,
17961            "type": {
17962              "kind": "NON_NULL",
17963              "name": null,
17964              "ofType": {
17965                "kind": "SCALAR",
17966                "name": "ID",
17967                "ofType": null
17968              }
17969            },
17970            "defaultValue": null,
17971            "isDeprecated": false,
17972            "deprecationReason": null
17973          },
17974          {
17975            "name": "githubAppInstallationId",
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            "name": "githubRepositoryIdentifier",
17992            "description": null,
17993            "type": {
17994              "kind": "NON_NULL",
17995              "name": null,
17996              "ofType": {
17997                "kind": "SCALAR",
17998                "name": "Int",
17999                "ofType": null
18000              }
18001            },
18002            "defaultValue": null,
18003            "isDeprecated": false,
18004            "deprecationReason": null
18005          },
18006          {
18007            "name": "nodeIdentifier",
18008            "description": null,
18009            "type": {
18010              "kind": "NON_NULL",
18011              "name": null,
18012              "ofType": {
18013                "kind": "SCALAR",
18014                "name": "String",
18015                "ofType": null
18016              }
18017            },
18018            "defaultValue": null,
18019            "isDeprecated": false,
18020            "deprecationReason": null
18021          }
18022        ],
18023        "interfaces": null,
18024        "enumValues": null,
18025        "possibleTypes": null
18026      },
18027      {
18028        "kind": "INPUT_OBJECT",
18029        "name": "CreateGitHubRepositorySettingsInput",
18030        "description": null,
18031        "fields": null,
18032        "inputFields": [
18033          {
18034            "name": "appId",
18035            "description": null,
18036            "type": {
18037              "kind": "NON_NULL",
18038              "name": null,
18039              "ofType": {
18040                "kind": "SCALAR",
18041                "name": "ID",
18042                "ofType": null
18043              }
18044            },
18045            "defaultValue": null,
18046            "isDeprecated": false,
18047            "deprecationReason": null
18048          },
18049          {
18050            "name": "baseDirectory",
18051            "description": "The base directory is the directory to change to before starting a build. This string should be a properly formatted POSIX path starting with '/', './', or the name of the directory relative to the root of the repository. Valid examples include: '/apps/expo-app', './apps/expo-app', and 'apps/expo-app'. This is intended for monorepos or apps that live in a subdirectory of a repository.",
18052            "type": {
18053              "kind": "NON_NULL",
18054              "name": null,
18055              "ofType": {
18056                "kind": "SCALAR",
18057                "name": "String",
18058                "ofType": null
18059              }
18060            },
18061            "defaultValue": null,
18062            "isDeprecated": false,
18063            "deprecationReason": null
18064          }
18065        ],
18066        "interfaces": null,
18067        "enumValues": null,
18068        "possibleTypes": null
18069      },
18070      {
18071        "kind": "INPUT_OBJECT",
18072        "name": "CreateIosSubmissionInput",
18073        "description": null,
18074        "fields": null,
18075        "inputFields": [
18076          {
18077            "name": "appId",
18078            "description": null,
18079            "type": {
18080              "kind": "NON_NULL",
18081              "name": null,
18082              "ofType": {
18083                "kind": "SCALAR",
18084                "name": "ID",
18085                "ofType": null
18086              }
18087            },
18088            "defaultValue": null,
18089            "isDeprecated": false,
18090            "deprecationReason": null
18091          },
18092          {
18093            "name": "archiveSource",
18094            "description": null,
18095            "type": {
18096              "kind": "INPUT_OBJECT",
18097              "name": "SubmissionArchiveSourceInput",
18098              "ofType": null
18099            },
18100            "defaultValue": null,
18101            "isDeprecated": false,
18102            "deprecationReason": null
18103          },
18104          {
18105            "name": "archiveUrl",
18106            "description": null,
18107            "type": {
18108              "kind": "SCALAR",
18109              "name": "String",
18110              "ofType": null
18111            },
18112            "defaultValue": null,
18113            "isDeprecated": false,
18114            "deprecationReason": null
18115          },
18116          {
18117            "name": "config",
18118            "description": null,
18119            "type": {
18120              "kind": "NON_NULL",
18121              "name": null,
18122              "ofType": {
18123                "kind": "INPUT_OBJECT",
18124                "name": "IosSubmissionConfigInput",
18125                "ofType": null
18126              }
18127            },
18128            "defaultValue": null,
18129            "isDeprecated": false,
18130            "deprecationReason": null
18131          },
18132          {
18133            "name": "submittedBuildId",
18134            "description": null,
18135            "type": {
18136              "kind": "SCALAR",
18137              "name": "ID",
18138              "ofType": null
18139            },
18140            "defaultValue": null,
18141            "isDeprecated": false,
18142            "deprecationReason": null
18143          }
18144        ],
18145        "interfaces": null,
18146        "enumValues": null,
18147        "possibleTypes": null
18148      },
18149      {
18150        "kind": "OBJECT",
18151        "name": "CreateServerlessFunctionUploadUrlResult",
18152        "description": null,
18153        "fields": [
18154          {
18155            "name": "formDataFields",
18156            "description": null,
18157            "args": [],
18158            "type": {
18159              "kind": "NON_NULL",
18160              "name": null,
18161              "ofType": {
18162                "kind": "SCALAR",
18163                "name": "JSONObject",
18164                "ofType": null
18165              }
18166            },
18167            "isDeprecated": false,
18168            "deprecationReason": null
18169          },
18170          {
18171            "name": "url",
18172            "description": null,
18173            "args": [],
18174            "type": {
18175              "kind": "NON_NULL",
18176              "name": null,
18177              "ofType": {
18178                "kind": "SCALAR",
18179                "name": "String",
18180                "ofType": null
18181              }
18182            },
18183            "isDeprecated": false,
18184            "deprecationReason": null
18185          }
18186        ],
18187        "inputFields": null,
18188        "interfaces": [],
18189        "enumValues": null,
18190        "possibleTypes": null
18191      },
18192      {
18193        "kind": "OBJECT",
18194        "name": "CreateSubmissionResult",
18195        "description": null,
18196        "fields": [
18197          {
18198            "name": "submission",
18199            "description": "Created submission",
18200            "args": [],
18201            "type": {
18202              "kind": "NON_NULL",
18203              "name": null,
18204              "ofType": {
18205                "kind": "OBJECT",
18206                "name": "Submission",
18207                "ofType": null
18208              }
18209            },
18210            "isDeprecated": false,
18211            "deprecationReason": null
18212          }
18213        ],
18214        "inputFields": null,
18215        "interfaces": [],
18216        "enumValues": null,
18217        "possibleTypes": null
18218      },
18219      {
18220        "kind": "INPUT_OBJECT",
18221        "name": "CustomBuildConfigInput",
18222        "description": null,
18223        "fields": null,
18224        "inputFields": [
18225          {
18226            "name": "path",
18227            "description": null,
18228            "type": {
18229              "kind": "NON_NULL",
18230              "name": null,
18231              "ofType": {
18232                "kind": "SCALAR",
18233                "name": "String",
18234                "ofType": null
18235              }
18236            },
18237            "defaultValue": null,
18238            "isDeprecated": false,
18239            "deprecationReason": null
18240          }
18241        ],
18242        "interfaces": null,
18243        "enumValues": null,
18244        "possibleTypes": null
18245      },
18246      {
18247        "kind": "SCALAR",
18248        "name": "DateTime",
18249        "description": "Date custom scalar type",
18250        "fields": null,
18251        "inputFields": null,
18252        "interfaces": null,
18253        "enumValues": null,
18254        "possibleTypes": null
18255      },
18256      {
18257        "kind": "OBJECT",
18258        "name": "DeleteAccessTokenResult",
18259        "description": null,
18260        "fields": [
18261          {
18262            "name": "id",
18263            "description": null,
18264            "args": [],
18265            "type": {
18266              "kind": "NON_NULL",
18267              "name": null,
18268              "ofType": {
18269                "kind": "SCALAR",
18270                "name": "ID",
18271                "ofType": null
18272              }
18273            },
18274            "isDeprecated": false,
18275            "deprecationReason": null
18276          }
18277        ],
18278        "inputFields": null,
18279        "interfaces": [],
18280        "enumValues": null,
18281        "possibleTypes": null
18282      },
18283      {
18284        "kind": "OBJECT",
18285        "name": "DeleteAccountResult",
18286        "description": null,
18287        "fields": [
18288          {
18289            "name": "id",
18290            "description": null,
18291            "args": [],
18292            "type": {
18293              "kind": "NON_NULL",
18294              "name": null,
18295              "ofType": {
18296                "kind": "SCALAR",
18297                "name": "ID",
18298                "ofType": null
18299              }
18300            },
18301            "isDeprecated": false,
18302            "deprecationReason": null
18303          }
18304        ],
18305        "inputFields": null,
18306        "interfaces": [],
18307        "enumValues": null,
18308        "possibleTypes": null
18309      },
18310      {
18311        "kind": "OBJECT",
18312        "name": "DeleteAccountSSOConfigurationResult",
18313        "description": null,
18314        "fields": [
18315          {
18316            "name": "id",
18317            "description": null,
18318            "args": [],
18319            "type": {
18320              "kind": "NON_NULL",
18321              "name": null,
18322              "ofType": {
18323                "kind": "SCALAR",
18324                "name": "ID",
18325                "ofType": null
18326              }
18327            },
18328            "isDeprecated": false,
18329            "deprecationReason": null
18330          }
18331        ],
18332        "inputFields": null,
18333        "interfaces": [],
18334        "enumValues": null,
18335        "possibleTypes": null
18336      },
18337      {
18338        "kind": "OBJECT",
18339        "name": "DeleteAndroidAppCredentialsResult",
18340        "description": null,
18341        "fields": [
18342          {
18343            "name": "id",
18344            "description": null,
18345            "args": [],
18346            "type": {
18347              "kind": "NON_NULL",
18348              "name": null,
18349              "ofType": {
18350                "kind": "SCALAR",
18351                "name": "ID",
18352                "ofType": null
18353              }
18354            },
18355            "isDeprecated": false,
18356            "deprecationReason": null
18357          }
18358        ],
18359        "inputFields": null,
18360        "interfaces": [],
18361        "enumValues": null,
18362        "possibleTypes": null
18363      },
18364      {
18365        "kind": "OBJECT",
18366        "name": "DeleteAndroidKeystoreResult",
18367        "description": null,
18368        "fields": [
18369          {
18370            "name": "id",
18371            "description": null,
18372            "args": [],
18373            "type": {
18374              "kind": "NON_NULL",
18375              "name": null,
18376              "ofType": {
18377                "kind": "SCALAR",
18378                "name": "ID",
18379                "ofType": null
18380              }
18381            },
18382            "isDeprecated": false,
18383            "deprecationReason": null
18384          }
18385        ],
18386        "inputFields": null,
18387        "interfaces": [],
18388        "enumValues": null,
18389        "possibleTypes": null
18390      },
18391      {
18392        "kind": "OBJECT",
18393        "name": "DeleteAppleDeviceResult",
18394        "description": null,
18395        "fields": [
18396          {
18397            "name": "id",
18398            "description": null,
18399            "args": [],
18400            "type": {
18401              "kind": "NON_NULL",
18402              "name": null,
18403              "ofType": {
18404                "kind": "SCALAR",
18405                "name": "ID",
18406                "ofType": null
18407              }
18408            },
18409            "isDeprecated": false,
18410            "deprecationReason": null
18411          }
18412        ],
18413        "inputFields": null,
18414        "interfaces": [],
18415        "enumValues": null,
18416        "possibleTypes": null
18417      },
18418      {
18419        "kind": "OBJECT",
18420        "name": "DeleteAppleDistributionCertificateResult",
18421        "description": null,
18422        "fields": [
18423          {
18424            "name": "id",
18425            "description": null,
18426            "args": [],
18427            "type": {
18428              "kind": "NON_NULL",
18429              "name": null,
18430              "ofType": {
18431                "kind": "SCALAR",
18432                "name": "ID",
18433                "ofType": null
18434              }
18435            },
18436            "isDeprecated": false,
18437            "deprecationReason": null
18438          }
18439        ],
18440        "inputFields": null,
18441        "interfaces": [],
18442        "enumValues": null,
18443        "possibleTypes": null
18444      },
18445      {
18446        "kind": "OBJECT",
18447        "name": "DeleteAppleProvisioningProfileResult",
18448        "description": null,
18449        "fields": [
18450          {
18451            "name": "id",
18452            "description": null,
18453            "args": [],
18454            "type": {
18455              "kind": "NON_NULL",
18456              "name": null,
18457              "ofType": {
18458                "kind": "SCALAR",
18459                "name": "ID",
18460                "ofType": null
18461              }
18462            },
18463            "isDeprecated": false,
18464            "deprecationReason": null
18465          }
18466        ],
18467        "inputFields": null,
18468        "interfaces": [],
18469        "enumValues": null,
18470        "possibleTypes": null
18471      },
18472      {
18473        "kind": "OBJECT",
18474        "name": "DeleteDiscordUserResult",
18475        "description": null,
18476        "fields": [
18477          {
18478            "name": "id",
18479            "description": null,
18480            "args": [],
18481            "type": {
18482              "kind": "NON_NULL",
18483              "name": null,
18484              "ofType": {
18485                "kind": "SCALAR",
18486                "name": "ID",
18487                "ofType": null
18488              }
18489            },
18490            "isDeprecated": false,
18491            "deprecationReason": null
18492          }
18493        ],
18494        "inputFields": null,
18495        "interfaces": [],
18496        "enumValues": null,
18497        "possibleTypes": null
18498      },
18499      {
18500        "kind": "OBJECT",
18501        "name": "DeleteEnvironmentSecretResult",
18502        "description": null,
18503        "fields": [
18504          {
18505            "name": "id",
18506            "description": null,
18507            "args": [],
18508            "type": {
18509              "kind": "NON_NULL",
18510              "name": null,
18511              "ofType": {
18512                "kind": "SCALAR",
18513                "name": "ID",
18514                "ofType": null
18515              }
18516            },
18517            "isDeprecated": false,
18518            "deprecationReason": null
18519          }
18520        ],
18521        "inputFields": null,
18522        "interfaces": [],
18523        "enumValues": null,
18524        "possibleTypes": null
18525      },
18526      {
18527        "kind": "OBJECT",
18528        "name": "DeleteGitHubUserResult",
18529        "description": null,
18530        "fields": [
18531          {
18532            "name": "id",
18533            "description": null,
18534            "args": [],
18535            "type": {
18536              "kind": "NON_NULL",
18537              "name": null,
18538              "ofType": {
18539                "kind": "SCALAR",
18540                "name": "ID",
18541                "ofType": null
18542              }
18543            },
18544            "isDeprecated": false,
18545            "deprecationReason": null
18546          }
18547        ],
18548        "inputFields": null,
18549        "interfaces": [],
18550        "enumValues": null,
18551        "possibleTypes": null
18552      },
18553      {
18554        "kind": "OBJECT",
18555        "name": "DeleteGoogleServiceAccountKeyResult",
18556        "description": null,
18557        "fields": [
18558          {
18559            "name": "id",
18560            "description": null,
18561            "args": [],
18562            "type": {
18563              "kind": "NON_NULL",
18564              "name": null,
18565              "ofType": {
18566                "kind": "SCALAR",
18567                "name": "ID",
18568                "ofType": null
18569              }
18570            },
18571            "isDeprecated": false,
18572            "deprecationReason": null
18573          }
18574        ],
18575        "inputFields": null,
18576        "interfaces": [],
18577        "enumValues": null,
18578        "possibleTypes": null
18579      },
18580      {
18581        "kind": "OBJECT",
18582        "name": "DeleteIosAppBuildCredentialsResult",
18583        "description": null,
18584        "fields": [
18585          {
18586            "name": "id",
18587            "description": null,
18588            "args": [],
18589            "type": {
18590              "kind": "NON_NULL",
18591              "name": null,
18592              "ofType": {
18593                "kind": "SCALAR",
18594                "name": "ID",
18595                "ofType": null
18596              }
18597            },
18598            "isDeprecated": false,
18599            "deprecationReason": null
18600          }
18601        ],
18602        "inputFields": null,
18603        "interfaces": [],
18604        "enumValues": null,
18605        "possibleTypes": null
18606      },
18607      {
18608        "kind": "OBJECT",
18609        "name": "DeleteIosAppCredentialsResult",
18610        "description": null,
18611        "fields": [
18612          {
18613            "name": "id",
18614            "description": null,
18615            "args": [],
18616            "type": {
18617              "kind": "NON_NULL",
18618              "name": null,
18619              "ofType": {
18620                "kind": "SCALAR",
18621                "name": "ID",
18622                "ofType": null
18623              }
18624            },
18625            "isDeprecated": false,
18626            "deprecationReason": null
18627          }
18628        ],
18629        "inputFields": null,
18630        "interfaces": [],
18631        "enumValues": null,
18632        "possibleTypes": null
18633      },
18634      {
18635        "kind": "OBJECT",
18636        "name": "DeleteRobotResult",
18637        "description": null,
18638        "fields": [
18639          {
18640            "name": "id",
18641            "description": null,
18642            "args": [],
18643            "type": {
18644              "kind": "NON_NULL",
18645              "name": null,
18646              "ofType": {
18647                "kind": "SCALAR",
18648                "name": "ID",
18649                "ofType": null
18650              }
18651            },
18652            "isDeprecated": false,
18653            "deprecationReason": null
18654          }
18655        ],
18656        "inputFields": null,
18657        "interfaces": [],
18658        "enumValues": null,
18659        "possibleTypes": null
18660      },
18661      {
18662        "kind": "OBJECT",
18663        "name": "DeleteUpdateBranchResult",
18664        "description": null,
18665        "fields": [
18666          {
18667            "name": "id",
18668            "description": null,
18669            "args": [],
18670            "type": {
18671              "kind": "NON_NULL",
18672              "name": null,
18673              "ofType": {
18674                "kind": "SCALAR",
18675                "name": "ID",
18676                "ofType": null
18677              }
18678            },
18679            "isDeprecated": false,
18680            "deprecationReason": null
18681          }
18682        ],
18683        "inputFields": null,
18684        "interfaces": [],
18685        "enumValues": null,
18686        "possibleTypes": null
18687      },
18688      {
18689        "kind": "OBJECT",
18690        "name": "DeleteUpdateChannelResult",
18691        "description": null,
18692        "fields": [
18693          {
18694            "name": "id",
18695            "description": null,
18696            "args": [],
18697            "type": {
18698              "kind": "NON_NULL",
18699              "name": null,
18700              "ofType": {
18701                "kind": "SCALAR",
18702                "name": "ID",
18703                "ofType": null
18704              }
18705            },
18706            "isDeprecated": false,
18707            "deprecationReason": null
18708          }
18709        ],
18710        "inputFields": null,
18711        "interfaces": [],
18712        "enumValues": null,
18713        "possibleTypes": null
18714      },
18715      {
18716        "kind": "OBJECT",
18717        "name": "DeleteUpdateGroupResult",
18718        "description": null,
18719        "fields": [
18720          {
18721            "name": "group",
18722            "description": null,
18723            "args": [],
18724            "type": {
18725              "kind": "NON_NULL",
18726              "name": null,
18727              "ofType": {
18728                "kind": "SCALAR",
18729                "name": "ID",
18730                "ofType": null
18731              }
18732            },
18733            "isDeprecated": false,
18734            "deprecationReason": null
18735          }
18736        ],
18737        "inputFields": null,
18738        "interfaces": [],
18739        "enumValues": null,
18740        "possibleTypes": null
18741      },
18742      {
18743        "kind": "OBJECT",
18744        "name": "DeleteWebhookResult",
18745        "description": null,
18746        "fields": [
18747          {
18748            "name": "id",
18749            "description": null,
18750            "args": [],
18751            "type": {
18752              "kind": "NON_NULL",
18753              "name": null,
18754              "ofType": {
18755                "kind": "SCALAR",
18756                "name": "ID",
18757                "ofType": null
18758              }
18759            },
18760            "isDeprecated": false,
18761            "deprecationReason": null
18762          }
18763        ],
18764        "inputFields": null,
18765        "interfaces": [],
18766        "enumValues": null,
18767        "possibleTypes": null
18768      },
18769      {
18770        "kind": "OBJECT",
18771        "name": "DeployServerlessFunctionResult",
18772        "description": null,
18773        "fields": [
18774          {
18775            "name": "url",
18776            "description": null,
18777            "args": [],
18778            "type": {
18779              "kind": "NON_NULL",
18780              "name": null,
18781              "ofType": {
18782                "kind": "SCALAR",
18783                "name": "String",
18784                "ofType": null
18785              }
18786            },
18787            "isDeprecated": false,
18788            "deprecationReason": null
18789          }
18790        ],
18791        "inputFields": null,
18792        "interfaces": [],
18793        "enumValues": null,
18794        "possibleTypes": null
18795      },
18796      {
18797        "kind": "OBJECT",
18798        "name": "Deployment",
18799        "description": "Represents a Deployment - a set of Builds with the same Runtime Version and Channel",
18800        "fields": [
18801          {
18802            "name": "builds",
18803            "description": null,
18804            "args": [
18805              {
18806                "name": "after",
18807                "description": null,
18808                "type": {
18809                  "kind": "SCALAR",
18810                  "name": "String",
18811                  "ofType": null
18812                },
18813                "defaultValue": null,
18814                "isDeprecated": false,
18815                "deprecationReason": null
18816              },
18817              {
18818                "name": "before",
18819                "description": null,
18820                "type": {
18821                  "kind": "SCALAR",
18822                  "name": "String",
18823                  "ofType": null
18824                },
18825                "defaultValue": null,
18826                "isDeprecated": false,
18827                "deprecationReason": null
18828              },
18829              {
18830                "name": "first",
18831                "description": null,
18832                "type": {
18833                  "kind": "SCALAR",
18834                  "name": "Int",
18835                  "ofType": null
18836                },
18837                "defaultValue": null,
18838                "isDeprecated": false,
18839                "deprecationReason": null
18840              },
18841              {
18842                "name": "last",
18843                "description": null,
18844                "type": {
18845                  "kind": "SCALAR",
18846                  "name": "Int",
18847                  "ofType": null
18848                },
18849                "defaultValue": null,
18850                "isDeprecated": false,
18851                "deprecationReason": null
18852              }
18853            ],
18854            "type": {
18855              "kind": "NON_NULL",
18856              "name": null,
18857              "ofType": {
18858                "kind": "OBJECT",
18859                "name": "DeploymentBuildsConnection",
18860                "ofType": null
18861              }
18862            },
18863            "isDeprecated": false,
18864            "deprecationReason": null
18865          },
18866          {
18867            "name": "channel",
18868            "description": null,
18869            "args": [],
18870            "type": {
18871              "kind": "NON_NULL",
18872              "name": null,
18873              "ofType": {
18874                "kind": "OBJECT",
18875                "name": "UpdateChannel",
18876                "ofType": null
18877              }
18878            },
18879            "isDeprecated": false,
18880            "deprecationReason": null
18881          },
18882          {
18883            "name": "id",
18884            "description": null,
18885            "args": [],
18886            "type": {
18887              "kind": "NON_NULL",
18888              "name": null,
18889              "ofType": {
18890                "kind": "SCALAR",
18891                "name": "ID",
18892                "ofType": null
18893              }
18894            },
18895            "isDeprecated": false,
18896            "deprecationReason": null
18897          },
18898          {
18899            "name": "latestUpdate",
18900            "description": null,
18901            "args": [],
18902            "type": {
18903              "kind": "OBJECT",
18904              "name": "Update",
18905              "ofType": null
18906            },
18907            "isDeprecated": true,
18908            "deprecationReason": "Not required for the new Deployment UI"
18909          },
18910          {
18911            "name": "runtime",
18912            "description": null,
18913            "args": [],
18914            "type": {
18915              "kind": "NON_NULL",
18916              "name": null,
18917              "ofType": {
18918                "kind": "OBJECT",
18919                "name": "Runtime",
18920                "ofType": null
18921              }
18922            },
18923            "isDeprecated": false,
18924            "deprecationReason": null
18925          }
18926        ],
18927        "inputFields": null,
18928        "interfaces": [],
18929        "enumValues": null,
18930        "possibleTypes": null
18931      },
18932      {
18933        "kind": "OBJECT",
18934        "name": "DeploymentBuildEdge",
18935        "description": null,
18936        "fields": [
18937          {
18938            "name": "cursor",
18939            "description": null,
18940            "args": [],
18941            "type": {
18942              "kind": "NON_NULL",
18943              "name": null,
18944              "ofType": {
18945                "kind": "SCALAR",
18946                "name": "String",
18947                "ofType": null
18948              }
18949            },
18950            "isDeprecated": false,
18951            "deprecationReason": null
18952          },
18953          {
18954            "name": "node",
18955            "description": null,
18956            "args": [],
18957            "type": {
18958              "kind": "NON_NULL",
18959              "name": null,
18960              "ofType": {
18961                "kind": "OBJECT",
18962                "name": "Build",
18963                "ofType": null
18964              }
18965            },
18966            "isDeprecated": false,
18967            "deprecationReason": null
18968          }
18969        ],
18970        "inputFields": null,
18971        "interfaces": [],
18972        "enumValues": null,
18973        "possibleTypes": null
18974      },
18975      {
18976        "kind": "OBJECT",
18977        "name": "DeploymentBuildsConnection",
18978        "description": "Represents the connection over the builds edge of a Deployment",
18979        "fields": [
18980          {
18981            "name": "edges",
18982            "description": null,
18983            "args": [],
18984            "type": {
18985              "kind": "NON_NULL",
18986              "name": null,
18987              "ofType": {
18988                "kind": "LIST",
18989                "name": null,
18990                "ofType": {
18991                  "kind": "NON_NULL",
18992                  "name": null,
18993                  "ofType": {
18994                    "kind": "OBJECT",
18995                    "name": "DeploymentBuildEdge",
18996                    "ofType": null
18997                  }
18998                }
18999              }
19000            },
19001            "isDeprecated": false,
19002            "deprecationReason": null
19003          },
19004          {
19005            "name": "pageInfo",
19006            "description": null,
19007            "args": [],
19008            "type": {
19009              "kind": "NON_NULL",
19010              "name": null,
19011              "ofType": {
19012                "kind": "OBJECT",
19013                "name": "PageInfo",
19014                "ofType": null
19015              }
19016            },
19017            "isDeprecated": false,
19018            "deprecationReason": null
19019          }
19020        ],
19021        "inputFields": null,
19022        "interfaces": [],
19023        "enumValues": null,
19024        "possibleTypes": null
19025      },
19026      {
19027        "kind": "OBJECT",
19028        "name": "DeploymentEdge",
19029        "description": null,
19030        "fields": [
19031          {
19032            "name": "cursor",
19033            "description": null,
19034            "args": [],
19035            "type": {
19036              "kind": "NON_NULL",
19037              "name": null,
19038              "ofType": {
19039                "kind": "SCALAR",
19040                "name": "String",
19041                "ofType": null
19042              }
19043            },
19044            "isDeprecated": false,
19045            "deprecationReason": null
19046          },
19047          {
19048            "name": "node",
19049            "description": null,
19050            "args": [],
19051            "type": {
19052              "kind": "NON_NULL",
19053              "name": null,
19054              "ofType": {
19055                "kind": "OBJECT",
19056                "name": "Deployment",
19057                "ofType": null
19058              }
19059            },
19060            "isDeprecated": false,
19061            "deprecationReason": null
19062          }
19063        ],
19064        "inputFields": null,
19065        "interfaces": [],
19066        "enumValues": null,
19067        "possibleTypes": null
19068      },
19069      {
19070        "kind": "OBJECT",
19071        "name": "DeploymentsConnection",
19072        "description": "Represents the connection over the deployments edge of an App",
19073        "fields": [
19074          {
19075            "name": "edges",
19076            "description": null,
19077            "args": [],
19078            "type": {
19079              "kind": "NON_NULL",
19080              "name": null,
19081              "ofType": {
19082                "kind": "LIST",
19083                "name": null,
19084                "ofType": {
19085                  "kind": "NON_NULL",
19086                  "name": null,
19087                  "ofType": {
19088                    "kind": "OBJECT",
19089                    "name": "DeploymentEdge",
19090                    "ofType": null
19091                  }
19092                }
19093              }
19094            },
19095            "isDeprecated": false,
19096            "deprecationReason": null
19097          },
19098          {
19099            "name": "pageInfo",
19100            "description": null,
19101            "args": [],
19102            "type": {
19103              "kind": "NON_NULL",
19104              "name": null,
19105              "ofType": {
19106                "kind": "OBJECT",
19107                "name": "PageInfo",
19108                "ofType": null
19109              }
19110            },
19111            "isDeprecated": false,
19112            "deprecationReason": null
19113          }
19114        ],
19115        "inputFields": null,
19116        "interfaces": [],
19117        "enumValues": null,
19118        "possibleTypes": null
19119      },
19120      {
19121        "kind": "OBJECT",
19122        "name": "DiscordUser",
19123        "description": null,
19124        "fields": [
19125          {
19126            "name": "discordIdentifier",
19127            "description": null,
19128            "args": [],
19129            "type": {
19130              "kind": "NON_NULL",
19131              "name": null,
19132              "ofType": {
19133                "kind": "SCALAR",
19134                "name": "String",
19135                "ofType": null
19136              }
19137            },
19138            "isDeprecated": false,
19139            "deprecationReason": null
19140          },
19141          {
19142            "name": "id",
19143            "description": null,
19144            "args": [],
19145            "type": {
19146              "kind": "NON_NULL",
19147              "name": null,
19148              "ofType": {
19149                "kind": "SCALAR",
19150                "name": "ID",
19151                "ofType": null
19152              }
19153            },
19154            "isDeprecated": false,
19155            "deprecationReason": null
19156          },
19157          {
19158            "name": "metadata",
19159            "description": null,
19160            "args": [],
19161            "type": {
19162              "kind": "OBJECT",
19163              "name": "DiscordUserMetadata",
19164              "ofType": null
19165            },
19166            "isDeprecated": false,
19167            "deprecationReason": null
19168          },
19169          {
19170            "name": "userActor",
19171            "description": null,
19172            "args": [],
19173            "type": {
19174              "kind": "NON_NULL",
19175              "name": null,
19176              "ofType": {
19177                "kind": "INTERFACE",
19178                "name": "UserActor",
19179                "ofType": null
19180              }
19181            },
19182            "isDeprecated": false,
19183            "deprecationReason": null
19184          }
19185        ],
19186        "inputFields": null,
19187        "interfaces": [],
19188        "enumValues": null,
19189        "possibleTypes": null
19190      },
19191      {
19192        "kind": "OBJECT",
19193        "name": "DiscordUserMetadata",
19194        "description": null,
19195        "fields": [
19196          {
19197            "name": "discordAvatarUrl",
19198            "description": null,
19199            "args": [],
19200            "type": {
19201              "kind": "NON_NULL",
19202              "name": null,
19203              "ofType": {
19204                "kind": "SCALAR",
19205                "name": "String",
19206                "ofType": null
19207              }
19208            },
19209            "isDeprecated": false,
19210            "deprecationReason": null
19211          },
19212          {
19213            "name": "discordDiscriminator",
19214            "description": null,
19215            "args": [],
19216            "type": {
19217              "kind": "NON_NULL",
19218              "name": null,
19219              "ofType": {
19220                "kind": "SCALAR",
19221                "name": "String",
19222                "ofType": null
19223              }
19224            },
19225            "isDeprecated": false,
19226            "deprecationReason": null
19227          },
19228          {
19229            "name": "discordUsername",
19230            "description": null,
19231            "args": [],
19232            "type": {
19233              "kind": "NON_NULL",
19234              "name": null,
19235              "ofType": {
19236                "kind": "SCALAR",
19237                "name": "String",
19238                "ofType": null
19239              }
19240            },
19241            "isDeprecated": false,
19242            "deprecationReason": null
19243          }
19244        ],
19245        "inputFields": null,
19246        "interfaces": [],
19247        "enumValues": null,
19248        "possibleTypes": null
19249      },
19250      {
19251        "kind": "OBJECT",
19252        "name": "DiscordUserMutation",
19253        "description": null,
19254        "fields": [
19255          {
19256            "name": "deleteDiscordUser",
19257            "description": "Delete a Discord User by ID",
19258            "args": [
19259              {
19260                "name": "id",
19261                "description": null,
19262                "type": {
19263                  "kind": "NON_NULL",
19264                  "name": null,
19265                  "ofType": {
19266                    "kind": "SCALAR",
19267                    "name": "ID",
19268                    "ofType": null
19269                  }
19270                },
19271                "defaultValue": null,
19272                "isDeprecated": false,
19273                "deprecationReason": null
19274              }
19275            ],
19276            "type": {
19277              "kind": "NON_NULL",
19278              "name": null,
19279              "ofType": {
19280                "kind": "OBJECT",
19281                "name": "DeleteDiscordUserResult",
19282                "ofType": null
19283              }
19284            },
19285            "isDeprecated": false,
19286            "deprecationReason": null
19287          }
19288        ],
19289        "inputFields": null,
19290        "interfaces": [],
19291        "enumValues": null,
19292        "possibleTypes": null
19293      },
19294      {
19295        "kind": "ENUM",
19296        "name": "DistributionType",
19297        "description": null,
19298        "fields": null,
19299        "inputFields": null,
19300        "interfaces": null,
19301        "enumValues": [
19302          {
19303            "name": "INTERNAL",
19304            "description": null,
19305            "isDeprecated": false,
19306            "deprecationReason": null
19307          },
19308          {
19309            "name": "SIMULATOR",
19310            "description": null,
19311            "isDeprecated": false,
19312            "deprecationReason": null
19313          },
19314          {
19315            "name": "STORE",
19316            "description": null,
19317            "isDeprecated": false,
19318            "deprecationReason": null
19319          }
19320        ],
19321        "possibleTypes": null
19322      },
19323      {
19324        "kind": "ENUM",
19325        "name": "EASBuildBillingResourceClass",
19326        "description": null,
19327        "fields": null,
19328        "inputFields": null,
19329        "interfaces": null,
19330        "enumValues": [
19331          {
19332            "name": "LARGE",
19333            "description": null,
19334            "isDeprecated": false,
19335            "deprecationReason": null
19336          },
19337          {
19338            "name": "MEDIUM",
19339            "description": null,
19340            "isDeprecated": false,
19341            "deprecationReason": null
19342          }
19343        ],
19344        "possibleTypes": null
19345      },
19346      {
19347        "kind": "OBJECT",
19348        "name": "EASBuildDeprecationInfo",
19349        "description": null,
19350        "fields": [
19351          {
19352            "name": "message",
19353            "description": null,
19354            "args": [],
19355            "type": {
19356              "kind": "NON_NULL",
19357              "name": null,
19358              "ofType": {
19359                "kind": "SCALAR",
19360                "name": "String",
19361                "ofType": null
19362              }
19363            },
19364            "isDeprecated": false,
19365            "deprecationReason": null
19366          },
19367          {
19368            "name": "type",
19369            "description": null,
19370            "args": [],
19371            "type": {
19372              "kind": "NON_NULL",
19373              "name": null,
19374              "ofType": {
19375                "kind": "ENUM",
19376                "name": "EASBuildDeprecationInfoType",
19377                "ofType": null
19378              }
19379            },
19380            "isDeprecated": false,
19381            "deprecationReason": null
19382          }
19383        ],
19384        "inputFields": null,
19385        "interfaces": [],
19386        "enumValues": null,
19387        "possibleTypes": null
19388      },
19389      {
19390        "kind": "ENUM",
19391        "name": "EASBuildDeprecationInfoType",
19392        "description": null,
19393        "fields": null,
19394        "inputFields": null,
19395        "interfaces": null,
19396        "enumValues": [
19397          {
19398            "name": "INTERNAL",
19399            "description": null,
19400            "isDeprecated": false,
19401            "deprecationReason": null
19402          },
19403          {
19404            "name": "USER_FACING",
19405            "description": null,
19406            "isDeprecated": false,
19407            "deprecationReason": null
19408          }
19409        ],
19410        "possibleTypes": null
19411      },
19412      {
19413        "kind": "UNION",
19414        "name": "EASBuildOrClassicBuildJob",
19415        "description": null,
19416        "fields": null,
19417        "inputFields": null,
19418        "interfaces": null,
19419        "enumValues": null,
19420        "possibleTypes": [
19421          {
19422            "kind": "OBJECT",
19423            "name": "Build",
19424            "ofType": null
19425          },
19426          {
19427            "kind": "OBJECT",
19428            "name": "BuildJob",
19429            "ofType": null
19430          }
19431        ]
19432      },
19433      {
19434        "kind": "ENUM",
19435        "name": "EASService",
19436        "description": null,
19437        "fields": null,
19438        "inputFields": null,
19439        "interfaces": null,
19440        "enumValues": [
19441          {
19442            "name": "BUILDS",
19443            "description": null,
19444            "isDeprecated": false,
19445            "deprecationReason": null
19446          },
19447          {
19448            "name": "UPDATES",
19449            "description": null,
19450            "isDeprecated": false,
19451            "deprecationReason": null
19452          }
19453        ],
19454        "possibleTypes": null
19455      },
19456      {
19457        "kind": "ENUM",
19458        "name": "EASServiceMetric",
19459        "description": null,
19460        "fields": null,
19461        "inputFields": null,
19462        "interfaces": null,
19463        "enumValues": [
19464          {
19465            "name": "ASSETS_REQUESTS",
19466            "description": null,
19467            "isDeprecated": false,
19468            "deprecationReason": null
19469          },
19470          {
19471            "name": "BANDWIDTH_USAGE",
19472            "description": null,
19473            "isDeprecated": false,
19474            "deprecationReason": null
19475          },
19476          {
19477            "name": "BUILDS",
19478            "description": null,
19479            "isDeprecated": false,
19480            "deprecationReason": null
19481          },
19482          {
19483            "name": "MANIFEST_REQUESTS",
19484            "description": null,
19485            "isDeprecated": false,
19486            "deprecationReason": null
19487          },
19488          {
19489            "name": "UNIQUE_UPDATERS",
19490            "description": null,
19491            "isDeprecated": false,
19492            "deprecationReason": null
19493          },
19494          {
19495            "name": "UNIQUE_USERS",
19496            "description": null,
19497            "isDeprecated": false,
19498            "deprecationReason": null
19499          }
19500        ],
19501        "possibleTypes": null
19502      },
19503      {
19504        "kind": "OBJECT",
19505        "name": "EASTotalPlanEnablement",
19506        "description": null,
19507        "fields": [
19508          {
19509            "name": "total",
19510            "description": null,
19511            "args": [],
19512            "type": {
19513              "kind": "NON_NULL",
19514              "name": null,
19515              "ofType": {
19516                "kind": "SCALAR",
19517                "name": "Int",
19518                "ofType": null
19519              }
19520            },
19521            "isDeprecated": false,
19522            "deprecationReason": null
19523          },
19524          {
19525            "name": "unit",
19526            "description": null,
19527            "args": [],
19528            "type": {
19529              "kind": "ENUM",
19530              "name": "EASTotalPlanEnablementUnit",
19531              "ofType": null
19532            },
19533            "isDeprecated": false,
19534            "deprecationReason": null
19535          }
19536        ],
19537        "inputFields": null,
19538        "interfaces": [],
19539        "enumValues": null,
19540        "possibleTypes": null
19541      },
19542      {
19543        "kind": "ENUM",
19544        "name": "EASTotalPlanEnablementUnit",
19545        "description": null,
19546        "fields": null,
19547        "inputFields": null,
19548        "interfaces": null,
19549        "enumValues": [
19550          {
19551            "name": "BUILD",
19552            "description": null,
19553            "isDeprecated": false,
19554            "deprecationReason": null
19555          },
19556          {
19557            "name": "BYTE",
19558            "description": null,
19559            "isDeprecated": false,
19560            "deprecationReason": null
19561          },
19562          {
19563            "name": "CONCURRENCY",
19564            "description": null,
19565            "isDeprecated": false,
19566            "deprecationReason": null
19567          },
19568          {
19569            "name": "REQUEST",
19570            "description": null,
19571            "isDeprecated": false,
19572            "deprecationReason": null
19573          },
19574          {
19575            "name": "UPDATER",
19576            "description": null,
19577            "isDeprecated": false,
19578            "deprecationReason": null
19579          },
19580          {
19581            "name": "USER",
19582            "description": null,
19583            "isDeprecated": false,
19584            "deprecationReason": null
19585          }
19586        ],
19587        "possibleTypes": null
19588      },
19589      {
19590        "kind": "INPUT_OBJECT",
19591        "name": "EditUpdateBranchInput",
19592        "description": null,
19593        "fields": null,
19594        "inputFields": [
19595          {
19596            "name": "appId",
19597            "description": null,
19598            "type": {
19599              "kind": "SCALAR",
19600              "name": "ID",
19601              "ofType": null
19602            },
19603            "defaultValue": null,
19604            "isDeprecated": false,
19605            "deprecationReason": null
19606          },
19607          {
19608            "name": "id",
19609            "description": null,
19610            "type": {
19611              "kind": "SCALAR",
19612              "name": "ID",
19613              "ofType": null
19614            },
19615            "defaultValue": null,
19616            "isDeprecated": false,
19617            "deprecationReason": null
19618          },
19619          {
19620            "name": "name",
19621            "description": null,
19622            "type": {
19623              "kind": "SCALAR",
19624              "name": "String",
19625              "ofType": null
19626            },
19627            "defaultValue": null,
19628            "isDeprecated": false,
19629            "deprecationReason": null
19630          },
19631          {
19632            "name": "newName",
19633            "description": null,
19634            "type": {
19635              "kind": "NON_NULL",
19636              "name": null,
19637              "ofType": {
19638                "kind": "SCALAR",
19639                "name": "String",
19640                "ofType": null
19641              }
19642            },
19643            "defaultValue": null,
19644            "isDeprecated": false,
19645            "deprecationReason": null
19646          }
19647        ],
19648        "interfaces": null,
19649        "enumValues": null,
19650        "possibleTypes": null
19651      },
19652      {
19653        "kind": "OBJECT",
19654        "name": "EmailSubscriptionMutation",
19655        "description": null,
19656        "fields": [
19657          {
19658            "name": "addUser",
19659            "description": null,
19660            "args": [
19661              {
19662                "name": "addUserInput",
19663                "description": null,
19664                "type": {
19665                  "kind": "NON_NULL",
19666                  "name": null,
19667                  "ofType": {
19668                    "kind": "INPUT_OBJECT",
19669                    "name": "AddUserInput",
19670                    "ofType": null
19671                  }
19672                },
19673                "defaultValue": null,
19674                "isDeprecated": false,
19675                "deprecationReason": null
19676              }
19677            ],
19678            "type": {
19679              "kind": "NON_NULL",
19680              "name": null,
19681              "ofType": {
19682                "kind": "OBJECT",
19683                "name": "AddUserPayload",
19684                "ofType": null
19685              }
19686            },
19687            "isDeprecated": false,
19688            "deprecationReason": null
19689          }
19690        ],
19691        "inputFields": null,
19692        "interfaces": [],
19693        "enumValues": null,
19694        "possibleTypes": null
19695      },
19696      {
19697        "kind": "OBJECT",
19698        "name": "EnvironmentSecret",
19699        "description": null,
19700        "fields": [
19701          {
19702            "name": "createdAt",
19703            "description": null,
19704            "args": [],
19705            "type": {
19706              "kind": "NON_NULL",
19707              "name": null,
19708              "ofType": {
19709                "kind": "SCALAR",
19710                "name": "DateTime",
19711                "ofType": null
19712              }
19713            },
19714            "isDeprecated": false,
19715            "deprecationReason": null
19716          },
19717          {
19718            "name": "id",
19719            "description": null,
19720            "args": [],
19721            "type": {
19722              "kind": "NON_NULL",
19723              "name": null,
19724              "ofType": {
19725                "kind": "SCALAR",
19726                "name": "ID",
19727                "ofType": null
19728              }
19729            },
19730            "isDeprecated": false,
19731            "deprecationReason": null
19732          },
19733          {
19734            "name": "name",
19735            "description": null,
19736            "args": [],
19737            "type": {
19738              "kind": "NON_NULL",
19739              "name": null,
19740              "ofType": {
19741                "kind": "SCALAR",
19742                "name": "String",
19743                "ofType": null
19744              }
19745            },
19746            "isDeprecated": false,
19747            "deprecationReason": null
19748          },
19749          {
19750            "name": "type",
19751            "description": null,
19752            "args": [],
19753            "type": {
19754              "kind": "NON_NULL",
19755              "name": null,
19756              "ofType": {
19757                "kind": "ENUM",
19758                "name": "EnvironmentSecretType",
19759                "ofType": null
19760              }
19761            },
19762            "isDeprecated": false,
19763            "deprecationReason": null
19764          },
19765          {
19766            "name": "updatedAt",
19767            "description": null,
19768            "args": [],
19769            "type": {
19770              "kind": "NON_NULL",
19771              "name": null,
19772              "ofType": {
19773                "kind": "SCALAR",
19774                "name": "DateTime",
19775                "ofType": null
19776              }
19777            },
19778            "isDeprecated": false,
19779            "deprecationReason": null
19780          }
19781        ],
19782        "inputFields": null,
19783        "interfaces": [],
19784        "enumValues": null,
19785        "possibleTypes": null
19786      },
19787      {
19788        "kind": "OBJECT",
19789        "name": "EnvironmentSecretMutation",
19790        "description": null,
19791        "fields": [
19792          {
19793            "name": "createEnvironmentSecretForAccount",
19794            "description": "Create an environment secret for an Account",
19795            "args": [
19796              {
19797                "name": "accountId",
19798                "description": null,
19799                "type": {
19800                  "kind": "NON_NULL",
19801                  "name": null,
19802                  "ofType": {
19803                    "kind": "SCALAR",
19804                    "name": "String",
19805                    "ofType": null
19806                  }
19807                },
19808                "defaultValue": null,
19809                "isDeprecated": false,
19810                "deprecationReason": null
19811              },
19812              {
19813                "name": "environmentSecretData",
19814                "description": null,
19815                "type": {
19816                  "kind": "NON_NULL",
19817                  "name": null,
19818                  "ofType": {
19819                    "kind": "INPUT_OBJECT",
19820                    "name": "CreateEnvironmentSecretInput",
19821                    "ofType": null
19822                  }
19823                },
19824                "defaultValue": null,
19825                "isDeprecated": false,
19826                "deprecationReason": null
19827              }
19828            ],
19829            "type": {
19830              "kind": "NON_NULL",
19831              "name": null,
19832              "ofType": {
19833                "kind": "OBJECT",
19834                "name": "EnvironmentSecret",
19835                "ofType": null
19836              }
19837            },
19838            "isDeprecated": false,
19839            "deprecationReason": null
19840          },
19841          {
19842            "name": "createEnvironmentSecretForApp",
19843            "description": "Create an environment secret for an App",
19844            "args": [
19845              {
19846                "name": "appId",
19847                "description": null,
19848                "type": {
19849                  "kind": "NON_NULL",
19850                  "name": null,
19851                  "ofType": {
19852                    "kind": "SCALAR",
19853                    "name": "String",
19854                    "ofType": null
19855                  }
19856                },
19857                "defaultValue": null,
19858                "isDeprecated": false,
19859                "deprecationReason": null
19860              },
19861              {
19862                "name": "environmentSecretData",
19863                "description": null,
19864                "type": {
19865                  "kind": "NON_NULL",
19866                  "name": null,
19867                  "ofType": {
19868                    "kind": "INPUT_OBJECT",
19869                    "name": "CreateEnvironmentSecretInput",
19870                    "ofType": null
19871                  }
19872                },
19873                "defaultValue": null,
19874                "isDeprecated": false,
19875                "deprecationReason": null
19876              }
19877            ],
19878            "type": {
19879              "kind": "NON_NULL",
19880              "name": null,
19881              "ofType": {
19882                "kind": "OBJECT",
19883                "name": "EnvironmentSecret",
19884                "ofType": null
19885              }
19886            },
19887            "isDeprecated": false,
19888            "deprecationReason": null
19889          },
19890          {
19891            "name": "deleteEnvironmentSecret",
19892            "description": "Delete an environment secret",
19893            "args": [
19894              {
19895                "name": "id",
19896                "description": null,
19897                "type": {
19898                  "kind": "NON_NULL",
19899                  "name": null,
19900                  "ofType": {
19901                    "kind": "SCALAR",
19902                    "name": "String",
19903                    "ofType": null
19904                  }
19905                },
19906                "defaultValue": null,
19907                "isDeprecated": false,
19908                "deprecationReason": null
19909              }
19910            ],
19911            "type": {
19912              "kind": "NON_NULL",
19913              "name": null,
19914              "ofType": {
19915                "kind": "OBJECT",
19916                "name": "DeleteEnvironmentSecretResult",
19917                "ofType": null
19918              }
19919            },
19920            "isDeprecated": false,
19921            "deprecationReason": null
19922          }
19923        ],
19924        "inputFields": null,
19925        "interfaces": [],
19926        "enumValues": null,
19927        "possibleTypes": null
19928      },
19929      {
19930        "kind": "ENUM",
19931        "name": "EnvironmentSecretType",
19932        "description": null,
19933        "fields": null,
19934        "inputFields": null,
19935        "interfaces": null,
19936        "enumValues": [
19937          {
19938            "name": "FILE_BASE64",
19939            "description": null,
19940            "isDeprecated": false,
19941            "deprecationReason": null
19942          },
19943          {
19944            "name": "STRING",
19945            "description": null,
19946            "isDeprecated": false,
19947            "deprecationReason": null
19948          }
19949        ],
19950        "possibleTypes": null
19951      },
19952      {
19953        "kind": "OBJECT",
19954        "name": "EstimatedOverageAndCost",
19955        "description": null,
19956        "fields": [
19957          {
19958            "name": "id",
19959            "description": null,
19960            "args": [],
19961            "type": {
19962              "kind": "NON_NULL",
19963              "name": null,
19964              "ofType": {
19965                "kind": "SCALAR",
19966                "name": "ID",
19967                "ofType": null
19968              }
19969            },
19970            "isDeprecated": false,
19971            "deprecationReason": null
19972          },
19973          {
19974            "name": "limit",
19975            "description": "The limit, in units, allowed by this plan",
19976            "args": [],
19977            "type": {
19978              "kind": "NON_NULL",
19979              "name": null,
19980              "ofType": {
19981                "kind": "SCALAR",
19982                "name": "Float",
19983                "ofType": null
19984              }
19985            },
19986            "isDeprecated": false,
19987            "deprecationReason": null
19988          },
19989          {
19990            "name": "metadata",
19991            "description": null,
19992            "args": [],
19993            "type": {
19994              "kind": "UNION",
19995              "name": "AccountUsageMetadata",
19996              "ofType": null
19997            },
19998            "isDeprecated": false,
19999            "deprecationReason": null
20000          },
20001          {
20002            "name": "metricType",
20003            "description": null,
20004            "args": [],
20005            "type": {
20006              "kind": "NON_NULL",
20007              "name": null,
20008              "ofType": {
20009                "kind": "ENUM",
20010                "name": "UsageMetricType",
20011                "ofType": null
20012              }
20013            },
20014            "isDeprecated": false,
20015            "deprecationReason": null
20016          },
20017          {
20018            "name": "service",
20019            "description": null,
20020            "args": [],
20021            "type": {
20022              "kind": "NON_NULL",
20023              "name": null,
20024              "ofType": {
20025                "kind": "ENUM",
20026                "name": "EASService",
20027                "ofType": null
20028              }
20029            },
20030            "isDeprecated": false,
20031            "deprecationReason": null
20032          },
20033          {
20034            "name": "serviceMetric",
20035            "description": null,
20036            "args": [],
20037            "type": {
20038              "kind": "NON_NULL",
20039              "name": null,
20040              "ofType": {
20041                "kind": "ENUM",
20042                "name": "EASServiceMetric",
20043                "ofType": null
20044              }
20045            },
20046            "isDeprecated": false,
20047            "deprecationReason": null
20048          },
20049          {
20050            "name": "totalCost",
20051            "description": "Total cost of this particular metric, in cents",
20052            "args": [],
20053            "type": {
20054              "kind": "NON_NULL",
20055              "name": null,
20056              "ofType": {
20057                "kind": "SCALAR",
20058                "name": "Int",
20059                "ofType": null
20060              }
20061            },
20062            "isDeprecated": false,
20063            "deprecationReason": null
20064          },
20065          {
20066            "name": "value",
20067            "description": null,
20068            "args": [],
20069            "type": {
20070              "kind": "NON_NULL",
20071              "name": null,
20072              "ofType": {
20073                "kind": "SCALAR",
20074                "name": "Float",
20075                "ofType": null
20076              }
20077            },
20078            "isDeprecated": false,
20079            "deprecationReason": null
20080          }
20081        ],
20082        "inputFields": null,
20083        "interfaces": [],
20084        "enumValues": null,
20085        "possibleTypes": null
20086      },
20087      {
20088        "kind": "OBJECT",
20089        "name": "EstimatedUsage",
20090        "description": null,
20091        "fields": [
20092          {
20093            "name": "id",
20094            "description": null,
20095            "args": [],
20096            "type": {
20097              "kind": "NON_NULL",
20098              "name": null,
20099              "ofType": {
20100                "kind": "SCALAR",
20101                "name": "ID",
20102                "ofType": null
20103              }
20104            },
20105            "isDeprecated": false,
20106            "deprecationReason": null
20107          },
20108          {
20109            "name": "limit",
20110            "description": null,
20111            "args": [],
20112            "type": {
20113              "kind": "NON_NULL",
20114              "name": null,
20115              "ofType": {
20116                "kind": "SCALAR",
20117                "name": "Float",
20118                "ofType": null
20119              }
20120            },
20121            "isDeprecated": false,
20122            "deprecationReason": null
20123          },
20124          {
20125            "name": "metricType",
20126            "description": null,
20127            "args": [],
20128            "type": {
20129              "kind": "NON_NULL",
20130              "name": null,
20131              "ofType": {
20132                "kind": "ENUM",
20133                "name": "UsageMetricType",
20134                "ofType": null
20135              }
20136            },
20137            "isDeprecated": false,
20138            "deprecationReason": null
20139          },
20140          {
20141            "name": "service",
20142            "description": null,
20143            "args": [],
20144            "type": {
20145              "kind": "NON_NULL",
20146              "name": null,
20147              "ofType": {
20148                "kind": "ENUM",
20149                "name": "EASService",
20150                "ofType": null
20151              }
20152            },
20153            "isDeprecated": false,
20154            "deprecationReason": null
20155          },
20156          {
20157            "name": "serviceMetric",
20158            "description": null,
20159            "args": [],
20160            "type": {
20161              "kind": "NON_NULL",
20162              "name": null,
20163              "ofType": {
20164                "kind": "ENUM",
20165                "name": "EASServiceMetric",
20166                "ofType": null
20167              }
20168            },
20169            "isDeprecated": false,
20170            "deprecationReason": null
20171          },
20172          {
20173            "name": "value",
20174            "description": null,
20175            "args": [],
20176            "type": {
20177              "kind": "NON_NULL",
20178              "name": null,
20179              "ofType": {
20180                "kind": "SCALAR",
20181                "name": "Float",
20182                "ofType": null
20183              }
20184            },
20185            "isDeprecated": false,
20186            "deprecationReason": null
20187          }
20188        ],
20189        "inputFields": null,
20190        "interfaces": [],
20191        "enumValues": null,
20192        "possibleTypes": null
20193      },
20194      {
20195        "kind": "OBJECT",
20196        "name": "ExperimentationQuery",
20197        "description": null,
20198        "fields": [
20199          {
20200            "name": "deviceConfig",
20201            "description": "Get device experimentation config",
20202            "args": [],
20203            "type": {
20204              "kind": "NON_NULL",
20205              "name": null,
20206              "ofType": {
20207                "kind": "SCALAR",
20208                "name": "JSONObject",
20209                "ofType": null
20210              }
20211            },
20212            "isDeprecated": false,
20213            "deprecationReason": null
20214          },
20215          {
20216            "name": "deviceExperimentationUnit",
20217            "description": "Get experimentation unit to use for device experiments. In this case, it is the IP address.",
20218            "args": [],
20219            "type": {
20220              "kind": "NON_NULL",
20221              "name": null,
20222              "ofType": {
20223                "kind": "SCALAR",
20224                "name": "ID",
20225                "ofType": null
20226              }
20227            },
20228            "isDeprecated": false,
20229            "deprecationReason": null
20230          },
20231          {
20232            "name": "userConfig",
20233            "description": "Get user experimentation config",
20234            "args": [],
20235            "type": {
20236              "kind": "NON_NULL",
20237              "name": null,
20238              "ofType": {
20239                "kind": "SCALAR",
20240                "name": "JSONObject",
20241                "ofType": null
20242              }
20243            },
20244            "isDeprecated": false,
20245            "deprecationReason": null
20246          }
20247        ],
20248        "inputFields": null,
20249        "interfaces": [],
20250        "enumValues": null,
20251        "possibleTypes": null
20252      },
20253      {
20254        "kind": "UNION",
20255        "name": "FcmSnippet",
20256        "description": null,
20257        "fields": null,
20258        "inputFields": null,
20259        "interfaces": null,
20260        "enumValues": null,
20261        "possibleTypes": [
20262          {
20263            "kind": "OBJECT",
20264            "name": "FcmSnippetLegacy",
20265            "ofType": null
20266          },
20267          {
20268            "kind": "OBJECT",
20269            "name": "FcmSnippetV1",
20270            "ofType": null
20271          }
20272        ]
20273      },
20274      {
20275        "kind": "OBJECT",
20276        "name": "FcmSnippetLegacy",
20277        "description": null,
20278        "fields": [
20279          {
20280            "name": "firstFourCharacters",
20281            "description": null,
20282            "args": [],
20283            "type": {
20284              "kind": "NON_NULL",
20285              "name": null,
20286              "ofType": {
20287                "kind": "SCALAR",
20288                "name": "String",
20289                "ofType": null
20290              }
20291            },
20292            "isDeprecated": false,
20293            "deprecationReason": null
20294          },
20295          {
20296            "name": "lastFourCharacters",
20297            "description": null,
20298            "args": [],
20299            "type": {
20300              "kind": "NON_NULL",
20301              "name": null,
20302              "ofType": {
20303                "kind": "SCALAR",
20304                "name": "String",
20305                "ofType": null
20306              }
20307            },
20308            "isDeprecated": false,
20309            "deprecationReason": null
20310          }
20311        ],
20312        "inputFields": null,
20313        "interfaces": [],
20314        "enumValues": null,
20315        "possibleTypes": null
20316      },
20317      {
20318        "kind": "OBJECT",
20319        "name": "FcmSnippetV1",
20320        "description": null,
20321        "fields": [
20322          {
20323            "name": "clientId",
20324            "description": null,
20325            "args": [],
20326            "type": {
20327              "kind": "SCALAR",
20328              "name": "String",
20329              "ofType": null
20330            },
20331            "isDeprecated": false,
20332            "deprecationReason": null
20333          },
20334          {
20335            "name": "keyId",
20336            "description": null,
20337            "args": [],
20338            "type": {
20339              "kind": "NON_NULL",
20340              "name": null,
20341              "ofType": {
20342                "kind": "SCALAR",
20343                "name": "String",
20344                "ofType": null
20345              }
20346            },
20347            "isDeprecated": false,
20348            "deprecationReason": null
20349          },
20350          {
20351            "name": "projectId",
20352            "description": null,
20353            "args": [],
20354            "type": {
20355              "kind": "NON_NULL",
20356              "name": null,
20357              "ofType": {
20358                "kind": "SCALAR",
20359                "name": "String",
20360                "ofType": null
20361              }
20362            },
20363            "isDeprecated": false,
20364            "deprecationReason": null
20365          },
20366          {
20367            "name": "serviceAccountEmail",
20368            "description": null,
20369            "args": [],
20370            "type": {
20371              "kind": "NON_NULL",
20372              "name": null,
20373              "ofType": {
20374                "kind": "SCALAR",
20375                "name": "String",
20376                "ofType": null
20377              }
20378            },
20379            "isDeprecated": false,
20380            "deprecationReason": null
20381          }
20382        ],
20383        "inputFields": null,
20384        "interfaces": [],
20385        "enumValues": null,
20386        "possibleTypes": null
20387      },
20388      {
20389        "kind": "ENUM",
20390        "name": "Feature",
20391        "description": null,
20392        "fields": null,
20393        "inputFields": null,
20394        "interfaces": null,
20395        "enumValues": [
20396          {
20397            "name": "BUILDS",
20398            "description": "Priority Builds",
20399            "isDeprecated": false,
20400            "deprecationReason": null
20401          },
20402          {
20403            "name": "OPEN_SOURCE",
20404            "description": "Funds support for open source development",
20405            "isDeprecated": false,
20406            "deprecationReason": null
20407          },
20408          {
20409            "name": "SUPPORT",
20410            "description": "Top Tier Support",
20411            "isDeprecated": false,
20412            "deprecationReason": null
20413          },
20414          {
20415            "name": "TEAMS",
20416            "description": "Share access to projects",
20417            "isDeprecated": false,
20418            "deprecationReason": null
20419          }
20420        ],
20421        "possibleTypes": null
20422      },
20423      {
20424        "kind": "SCALAR",
20425        "name": "Float",
20426        "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).",
20427        "fields": null,
20428        "inputFields": null,
20429        "interfaces": null,
20430        "enumValues": null,
20431        "possibleTypes": null
20432      },
20433      {
20434        "kind": "OBJECT",
20435        "name": "FutureSubscription",
20436        "description": null,
20437        "fields": [
20438          {
20439            "name": "createdAt",
20440            "description": null,
20441            "args": [],
20442            "type": {
20443              "kind": "NON_NULL",
20444              "name": null,
20445              "ofType": {
20446                "kind": "SCALAR",
20447                "name": "DateTime",
20448                "ofType": null
20449              }
20450            },
20451            "isDeprecated": false,
20452            "deprecationReason": null
20453          },
20454          {
20455            "name": "id",
20456            "description": null,
20457            "args": [],
20458            "type": {
20459              "kind": "NON_NULL",
20460              "name": null,
20461              "ofType": {
20462                "kind": "SCALAR",
20463                "name": "ID",
20464                "ofType": null
20465              }
20466            },
20467            "isDeprecated": false,
20468            "deprecationReason": null
20469          },
20470          {
20471            "name": "meteredBillingStatus",
20472            "description": null,
20473            "args": [],
20474            "type": {
20475              "kind": "NON_NULL",
20476              "name": null,
20477              "ofType": {
20478                "kind": "OBJECT",
20479                "name": "MeteredBillingStatus",
20480                "ofType": null
20481              }
20482            },
20483            "isDeprecated": false,
20484            "deprecationReason": null
20485          },
20486          {
20487            "name": "planId",
20488            "description": null,
20489            "args": [],
20490            "type": {
20491              "kind": "NON_NULL",
20492              "name": null,
20493              "ofType": {
20494                "kind": "SCALAR",
20495                "name": "String",
20496                "ofType": null
20497              }
20498            },
20499            "isDeprecated": false,
20500            "deprecationReason": null
20501          },
20502          {
20503            "name": "startDate",
20504            "description": null,
20505            "args": [],
20506            "type": {
20507              "kind": "NON_NULL",
20508              "name": null,
20509              "ofType": {
20510                "kind": "SCALAR",
20511                "name": "DateTime",
20512                "ofType": null
20513              }
20514            },
20515            "isDeprecated": false,
20516            "deprecationReason": null
20517          }
20518        ],
20519        "inputFields": null,
20520        "interfaces": [],
20521        "enumValues": null,
20522        "possibleTypes": null
20523      },
20524      {
20525        "kind": "OBJECT",
20526        "name": "GetSignedAssetUploadSpecificationsResult",
20527        "description": null,
20528        "fields": [
20529          {
20530            "name": "specifications",
20531            "description": null,
20532            "args": [],
20533            "type": {
20534              "kind": "NON_NULL",
20535              "name": null,
20536              "ofType": {
20537                "kind": "LIST",
20538                "name": null,
20539                "ofType": {
20540                  "kind": "NON_NULL",
20541                  "name": null,
20542                  "ofType": {
20543                    "kind": "SCALAR",
20544                    "name": "String",
20545                    "ofType": null
20546                  }
20547                }
20548              }
20549            },
20550            "isDeprecated": false,
20551            "deprecationReason": null
20552          }
20553        ],
20554        "inputFields": null,
20555        "interfaces": [],
20556        "enumValues": null,
20557        "possibleTypes": null
20558      },
20559      {
20560        "kind": "ENUM",
20561        "name": "GitHubAppEnvironment",
20562        "description": null,
20563        "fields": null,
20564        "inputFields": null,
20565        "interfaces": null,
20566        "enumValues": [
20567          {
20568            "name": "DEVELOPMENT",
20569            "description": null,
20570            "isDeprecated": false,
20571            "deprecationReason": null
20572          },
20573          {
20574            "name": "PRODUCTION",
20575            "description": null,
20576            "isDeprecated": false,
20577            "deprecationReason": null
20578          },
20579          {
20580            "name": "STAGING",
20581            "description": null,
20582            "isDeprecated": false,
20583            "deprecationReason": null
20584          }
20585        ],
20586        "possibleTypes": null
20587      },
20588      {
20589        "kind": "OBJECT",
20590        "name": "GitHubAppInstallation",
20591        "description": null,
20592        "fields": [
20593          {
20594            "name": "accessibleRepositories",
20595            "description": null,
20596            "args": [
20597              {
20598                "name": "page",
20599                "description": null,
20600                "type": {
20601                  "kind": "SCALAR",
20602                  "name": "Int",
20603                  "ofType": null
20604                },
20605                "defaultValue": null,
20606                "isDeprecated": false,
20607                "deprecationReason": null
20608              },
20609              {
20610                "name": "perPage",
20611                "description": null,
20612                "type": {
20613                  "kind": "SCALAR",
20614                  "name": "Int",
20615                  "ofType": null
20616                },
20617                "defaultValue": null,
20618                "isDeprecated": false,
20619                "deprecationReason": null
20620              }
20621            ],
20622            "type": {
20623              "kind": "NON_NULL",
20624              "name": null,
20625              "ofType": {
20626                "kind": "OBJECT",
20627                "name": "GitHubRepositoryPaginationResult",
20628                "ofType": null
20629              }
20630            },
20631            "isDeprecated": false,
20632            "deprecationReason": null
20633          },
20634          {
20635            "name": "account",
20636            "description": null,
20637            "args": [],
20638            "type": {
20639              "kind": "NON_NULL",
20640              "name": null,
20641              "ofType": {
20642                "kind": "OBJECT",
20643                "name": "Account",
20644                "ofType": null
20645              }
20646            },
20647            "isDeprecated": false,
20648            "deprecationReason": null
20649          },
20650          {
20651            "name": "actor",
20652            "description": null,
20653            "args": [],
20654            "type": {
20655              "kind": "INTERFACE",
20656              "name": "Actor",
20657              "ofType": null
20658            },
20659            "isDeprecated": false,
20660            "deprecationReason": null
20661          },
20662          {
20663            "name": "id",
20664            "description": null,
20665            "args": [],
20666            "type": {
20667              "kind": "NON_NULL",
20668              "name": null,
20669              "ofType": {
20670                "kind": "SCALAR",
20671                "name": "ID",
20672                "ofType": null
20673              }
20674            },
20675            "isDeprecated": false,
20676            "deprecationReason": null
20677          },
20678          {
20679            "name": "installationIdentifier",
20680            "description": null,
20681            "args": [],
20682            "type": {
20683              "kind": "NON_NULL",
20684              "name": null,
20685              "ofType": {
20686                "kind": "SCALAR",
20687                "name": "Int",
20688                "ofType": null
20689              }
20690            },
20691            "isDeprecated": false,
20692            "deprecationReason": null
20693          },
20694          {
20695            "name": "metadata",
20696            "description": null,
20697            "args": [],
20698            "type": {
20699              "kind": "NON_NULL",
20700              "name": null,
20701              "ofType": {
20702                "kind": "OBJECT",
20703                "name": "GitHubAppInstallationMetadata",
20704                "ofType": null
20705              }
20706            },
20707            "isDeprecated": false,
20708            "deprecationReason": null
20709          }
20710        ],
20711        "inputFields": null,
20712        "interfaces": [],
20713        "enumValues": null,
20714        "possibleTypes": null
20715      },
20716      {
20717        "kind": "OBJECT",
20718        "name": "GitHubAppInstallationAccessibleRepository",
20719        "description": null,
20720        "fields": [
20721          {
20722            "name": "defaultBranch",
20723            "description": null,
20724            "args": [],
20725            "type": {
20726              "kind": "SCALAR",
20727              "name": "String",
20728              "ofType": null
20729            },
20730            "isDeprecated": false,
20731            "deprecationReason": null
20732          },
20733          {
20734            "name": "description",
20735            "description": null,
20736            "args": [],
20737            "type": {
20738              "kind": "SCALAR",
20739              "name": "String",
20740              "ofType": null
20741            },
20742            "isDeprecated": false,
20743            "deprecationReason": null
20744          },
20745          {
20746            "name": "id",
20747            "description": null,
20748            "args": [],
20749            "type": {
20750              "kind": "NON_NULL",
20751              "name": null,
20752              "ofType": {
20753                "kind": "SCALAR",
20754                "name": "Int",
20755                "ofType": null
20756              }
20757            },
20758            "isDeprecated": false,
20759            "deprecationReason": null
20760          },
20761          {
20762            "name": "name",
20763            "description": null,
20764            "args": [],
20765            "type": {
20766              "kind": "NON_NULL",
20767              "name": null,
20768              "ofType": {
20769                "kind": "SCALAR",
20770                "name": "String",
20771                "ofType": null
20772              }
20773            },
20774            "isDeprecated": false,
20775            "deprecationReason": null
20776          },
20777          {
20778            "name": "nodeId",
20779            "description": null,
20780            "args": [],
20781            "type": {
20782              "kind": "NON_NULL",
20783              "name": null,
20784              "ofType": {
20785                "kind": "SCALAR",
20786                "name": "String",
20787                "ofType": null
20788              }
20789            },
20790            "isDeprecated": false,
20791            "deprecationReason": null
20792          },
20793          {
20794            "name": "owner",
20795            "description": null,
20796            "args": [],
20797            "type": {
20798              "kind": "NON_NULL",
20799              "name": null,
20800              "ofType": {
20801                "kind": "OBJECT",
20802                "name": "GitHubRepositoryOwner",
20803                "ofType": null
20804              }
20805            },
20806            "isDeprecated": false,
20807            "deprecationReason": null
20808          },
20809          {
20810            "name": "private",
20811            "description": null,
20812            "args": [],
20813            "type": {
20814              "kind": "NON_NULL",
20815              "name": null,
20816              "ofType": {
20817                "kind": "SCALAR",
20818                "name": "Boolean",
20819                "ofType": null
20820              }
20821            },
20822            "isDeprecated": false,
20823            "deprecationReason": null
20824          },
20825          {
20826            "name": "url",
20827            "description": null,
20828            "args": [],
20829            "type": {
20830              "kind": "NON_NULL",
20831              "name": null,
20832              "ofType": {
20833                "kind": "SCALAR",
20834                "name": "String",
20835                "ofType": null
20836              }
20837            },
20838            "isDeprecated": false,
20839            "deprecationReason": null
20840          }
20841        ],
20842        "inputFields": null,
20843        "interfaces": [],
20844        "enumValues": null,
20845        "possibleTypes": null
20846      },
20847      {
20848        "kind": "OBJECT",
20849        "name": "GitHubAppInstallationMetadata",
20850        "description": null,
20851        "fields": [
20852          {
20853            "name": "githubAccountAvatarUrl",
20854            "description": null,
20855            "args": [],
20856            "type": {
20857              "kind": "SCALAR",
20858              "name": "String",
20859              "ofType": null
20860            },
20861            "isDeprecated": false,
20862            "deprecationReason": null
20863          },
20864          {
20865            "name": "githubAccountName",
20866            "description": null,
20867            "args": [],
20868            "type": {
20869              "kind": "SCALAR",
20870              "name": "String",
20871              "ofType": null
20872            },
20873            "isDeprecated": false,
20874            "deprecationReason": null
20875          },
20876          {
20877            "name": "installationStatus",
20878            "description": null,
20879            "args": [],
20880            "type": {
20881              "kind": "NON_NULL",
20882              "name": null,
20883              "ofType": {
20884                "kind": "ENUM",
20885                "name": "GitHubAppInstallationStatus",
20886                "ofType": null
20887              }
20888            },
20889            "isDeprecated": false,
20890            "deprecationReason": null
20891          }
20892        ],
20893        "inputFields": null,
20894        "interfaces": [],
20895        "enumValues": null,
20896        "possibleTypes": null
20897      },
20898      {
20899        "kind": "OBJECT",
20900        "name": "GitHubAppInstallationMutation",
20901        "description": null,
20902        "fields": [
20903          {
20904            "name": "createGitHubAppInstallationForAccount",
20905            "description": "Create a GitHub App installation for an Account",
20906            "args": [
20907              {
20908                "name": "githubAppInstallationData",
20909                "description": null,
20910                "type": {
20911                  "kind": "NON_NULL",
20912                  "name": null,
20913                  "ofType": {
20914                    "kind": "INPUT_OBJECT",
20915                    "name": "CreateGitHubAppInstallationInput",
20916                    "ofType": null
20917                  }
20918                },
20919                "defaultValue": null,
20920                "isDeprecated": false,
20921                "deprecationReason": null
20922              }
20923            ],
20924            "type": {
20925              "kind": "NON_NULL",
20926              "name": null,
20927              "ofType": {
20928                "kind": "OBJECT",
20929                "name": "GitHubAppInstallation",
20930                "ofType": null
20931              }
20932            },
20933            "isDeprecated": false,
20934            "deprecationReason": null
20935          },
20936          {
20937            "name": "deleteGitHubAppInstallation",
20938            "description": "Delete a GitHub App installation by ID",
20939            "args": [
20940              {
20941                "name": "githubAppInstallationId",
20942                "description": null,
20943                "type": {
20944                  "kind": "NON_NULL",
20945                  "name": null,
20946                  "ofType": {
20947                    "kind": "SCALAR",
20948                    "name": "ID",
20949                    "ofType": null
20950                  }
20951                },
20952                "defaultValue": null,
20953                "isDeprecated": false,
20954                "deprecationReason": null
20955              }
20956            ],
20957            "type": {
20958              "kind": "NON_NULL",
20959              "name": null,
20960              "ofType": {
20961                "kind": "OBJECT",
20962                "name": "GitHubAppInstallation",
20963                "ofType": null
20964              }
20965            },
20966            "isDeprecated": false,
20967            "deprecationReason": null
20968          }
20969        ],
20970        "inputFields": null,
20971        "interfaces": [],
20972        "enumValues": null,
20973        "possibleTypes": null
20974      },
20975      {
20976        "kind": "ENUM",
20977        "name": "GitHubAppInstallationStatus",
20978        "description": null,
20979        "fields": null,
20980        "inputFields": null,
20981        "interfaces": null,
20982        "enumValues": [
20983          {
20984            "name": "ACTIVE",
20985            "description": null,
20986            "isDeprecated": false,
20987            "deprecationReason": null
20988          },
20989          {
20990            "name": "NOT_INSTALLED",
20991            "description": null,
20992            "isDeprecated": false,
20993            "deprecationReason": null
20994          },
20995          {
20996            "name": "SUSPENDED",
20997            "description": null,
20998            "isDeprecated": false,
20999            "deprecationReason": null
21000          }
21001        ],
21002        "possibleTypes": null
21003      },
21004      {
21005        "kind": "OBJECT",
21006        "name": "GitHubAppMutation",
21007        "description": null,
21008        "fields": [
21009          {
21010            "name": "createGitHubBuild",
21011            "description": "Create a GitHub build for an app. Returns the ID of the background job receipt. Use BackgroundJobReceiptQuery to get the status of the job.",
21012            "args": [
21013              {
21014                "name": "buildInput",
21015                "description": null,
21016                "type": {
21017                  "kind": "NON_NULL",
21018                  "name": null,
21019                  "ofType": {
21020                    "kind": "INPUT_OBJECT",
21021                    "name": "GitHubBuildInput",
21022                    "ofType": null
21023                  }
21024                },
21025                "defaultValue": null,
21026                "isDeprecated": false,
21027                "deprecationReason": null
21028              }
21029            ],
21030            "type": {
21031              "kind": "NON_NULL",
21032              "name": null,
21033              "ofType": {
21034                "kind": "OBJECT",
21035                "name": "BackgroundJobReceipt",
21036                "ofType": null
21037              }
21038            },
21039            "isDeprecated": false,
21040            "deprecationReason": null
21041          }
21042        ],
21043        "inputFields": null,
21044        "interfaces": [],
21045        "enumValues": null,
21046        "possibleTypes": null
21047      },
21048      {
21049        "kind": "OBJECT",
21050        "name": "GitHubAppQuery",
21051        "description": null,
21052        "fields": [
21053          {
21054            "name": "appIdentifier",
21055            "description": null,
21056            "args": [],
21057            "type": {
21058              "kind": "NON_NULL",
21059              "name": null,
21060              "ofType": {
21061                "kind": "SCALAR",
21062                "name": "String",
21063                "ofType": null
21064              }
21065            },
21066            "isDeprecated": false,
21067            "deprecationReason": null
21068          },
21069          {
21070            "name": "clientIdentifier",
21071            "description": null,
21072            "args": [],
21073            "type": {
21074              "kind": "NON_NULL",
21075              "name": null,
21076              "ofType": {
21077                "kind": "SCALAR",
21078                "name": "String",
21079                "ofType": null
21080              }
21081            },
21082            "isDeprecated": false,
21083            "deprecationReason": null
21084          },
21085          {
21086            "name": "environment",
21087            "description": null,
21088            "args": [],
21089            "type": {
21090              "kind": "NON_NULL",
21091              "name": null,
21092              "ofType": {
21093                "kind": "ENUM",
21094                "name": "GitHubAppEnvironment",
21095                "ofType": null
21096              }
21097            },
21098            "isDeprecated": false,
21099            "deprecationReason": null
21100          },
21101          {
21102            "name": "installation",
21103            "description": null,
21104            "args": [
21105              {
21106                "name": "id",
21107                "description": null,
21108                "type": {
21109                  "kind": "NON_NULL",
21110                  "name": null,
21111                  "ofType": {
21112                    "kind": "SCALAR",
21113                    "name": "ID",
21114                    "ofType": null
21115                  }
21116                },
21117                "defaultValue": null,
21118                "isDeprecated": false,
21119                "deprecationReason": null
21120              }
21121            ],
21122            "type": {
21123              "kind": "NON_NULL",
21124              "name": null,
21125              "ofType": {
21126                "kind": "OBJECT",
21127                "name": "GitHubAppInstallation",
21128                "ofType": null
21129              }
21130            },
21131            "isDeprecated": false,
21132            "deprecationReason": null
21133          },
21134          {
21135            "name": "name",
21136            "description": null,
21137            "args": [],
21138            "type": {
21139              "kind": "NON_NULL",
21140              "name": null,
21141              "ofType": {
21142                "kind": "SCALAR",
21143                "name": "String",
21144                "ofType": null
21145              }
21146            },
21147            "isDeprecated": false,
21148            "deprecationReason": null
21149          },
21150          {
21151            "name": "searchRepositories",
21152            "description": null,
21153            "args": [
21154              {
21155                "name": "githubAppInstallationId",
21156                "description": null,
21157                "type": {
21158                  "kind": "NON_NULL",
21159                  "name": null,
21160                  "ofType": {
21161                    "kind": "SCALAR",
21162                    "name": "ID",
21163                    "ofType": null
21164                  }
21165                },
21166                "defaultValue": null,
21167                "isDeprecated": false,
21168                "deprecationReason": null
21169              },
21170              {
21171                "name": "query",
21172                "description": null,
21173                "type": {
21174                  "kind": "NON_NULL",
21175                  "name": null,
21176                  "ofType": {
21177                    "kind": "SCALAR",
21178                    "name": "String",
21179                    "ofType": null
21180                  }
21181                },
21182                "defaultValue": null,
21183                "isDeprecated": false,
21184                "deprecationReason": null
21185              }
21186            ],
21187            "type": {
21188              "kind": "NON_NULL",
21189              "name": null,
21190              "ofType": {
21191                "kind": "OBJECT",
21192                "name": "GitHubRepositoryPaginationResult",
21193                "ofType": null
21194              }
21195            },
21196            "isDeprecated": false,
21197            "deprecationReason": null
21198          }
21199        ],
21200        "inputFields": null,
21201        "interfaces": [],
21202        "enumValues": null,
21203        "possibleTypes": null
21204      },
21205      {
21206        "kind": "INPUT_OBJECT",
21207        "name": "GitHubBuildInput",
21208        "description": null,
21209        "fields": null,
21210        "inputFields": [
21211          {
21212            "name": "appId",
21213            "description": null,
21214            "type": {
21215              "kind": "NON_NULL",
21216              "name": null,
21217              "ofType": {
21218                "kind": "SCALAR",
21219                "name": "ID",
21220                "ofType": null
21221              }
21222            },
21223            "defaultValue": null,
21224            "isDeprecated": false,
21225            "deprecationReason": null
21226          },
21227          {
21228            "name": "baseDirectory",
21229            "description": null,
21230            "type": {
21231              "kind": "SCALAR",
21232              "name": "String",
21233              "ofType": null
21234            },
21235            "defaultValue": null,
21236            "isDeprecated": false,
21237            "deprecationReason": null
21238          },
21239          {
21240            "name": "buildProfile",
21241            "description": null,
21242            "type": {
21243              "kind": "NON_NULL",
21244              "name": null,
21245              "ofType": {
21246                "kind": "SCALAR",
21247                "name": "String",
21248                "ofType": null
21249              }
21250            },
21251            "defaultValue": null,
21252            "isDeprecated": false,
21253            "deprecationReason": null
21254          },
21255          {
21256            "name": "gitRef",
21257            "description": null,
21258            "type": {
21259              "kind": "NON_NULL",
21260              "name": null,
21261              "ofType": {
21262                "kind": "SCALAR",
21263                "name": "String",
21264                "ofType": null
21265              }
21266            },
21267            "defaultValue": null,
21268            "isDeprecated": false,
21269            "deprecationReason": null
21270          },
21271          {
21272            "name": "platform",
21273            "description": null,
21274            "type": {
21275              "kind": "NON_NULL",
21276              "name": null,
21277              "ofType": {
21278                "kind": "ENUM",
21279                "name": "AppPlatform",
21280                "ofType": null
21281              }
21282            },
21283            "defaultValue": null,
21284            "isDeprecated": false,
21285            "deprecationReason": null
21286          }
21287        ],
21288        "interfaces": null,
21289        "enumValues": null,
21290        "possibleTypes": null
21291      },
21292      {
21293        "kind": "OBJECT",
21294        "name": "GitHubRepository",
21295        "description": null,
21296        "fields": [
21297          {
21298            "name": "app",
21299            "description": null,
21300            "args": [],
21301            "type": {
21302              "kind": "NON_NULL",
21303              "name": null,
21304              "ofType": {
21305                "kind": "OBJECT",
21306                "name": "App",
21307                "ofType": null
21308              }
21309            },
21310            "isDeprecated": false,
21311            "deprecationReason": null
21312          },
21313          {
21314            "name": "githubAppInstallation",
21315            "description": null,
21316            "args": [],
21317            "type": {
21318              "kind": "NON_NULL",
21319              "name": null,
21320              "ofType": {
21321                "kind": "OBJECT",
21322                "name": "GitHubAppInstallation",
21323                "ofType": null
21324              }
21325            },
21326            "isDeprecated": false,
21327            "deprecationReason": null
21328          },
21329          {
21330            "name": "githubRepositoryIdentifier",
21331            "description": null,
21332            "args": [],
21333            "type": {
21334              "kind": "NON_NULL",
21335              "name": null,
21336              "ofType": {
21337                "kind": "SCALAR",
21338                "name": "Int",
21339                "ofType": null
21340              }
21341            },
21342            "isDeprecated": false,
21343            "deprecationReason": null
21344          },
21345          {
21346            "name": "githubRepositoryUrl",
21347            "description": null,
21348            "args": [],
21349            "type": {
21350              "kind": "SCALAR",
21351              "name": "String",
21352              "ofType": null
21353            },
21354            "isDeprecated": false,
21355            "deprecationReason": null
21356          },
21357          {
21358            "name": "id",
21359            "description": null,
21360            "args": [],
21361            "type": {
21362              "kind": "NON_NULL",
21363              "name": null,
21364              "ofType": {
21365                "kind": "SCALAR",
21366                "name": "ID",
21367                "ofType": null
21368              }
21369            },
21370            "isDeprecated": false,
21371            "deprecationReason": null
21372          },
21373          {
21374            "name": "metadata",
21375            "description": null,
21376            "args": [],
21377            "type": {
21378              "kind": "OBJECT",
21379              "name": "GitHubRepositoryMetadata",
21380              "ofType": null
21381            },
21382            "isDeprecated": false,
21383            "deprecationReason": null
21384          },
21385          {
21386            "name": "nodeIdentifier",
21387            "description": null,
21388            "args": [],
21389            "type": {
21390              "kind": "NON_NULL",
21391              "name": null,
21392              "ofType": {
21393                "kind": "SCALAR",
21394                "name": "String",
21395                "ofType": null
21396              }
21397            },
21398            "isDeprecated": false,
21399            "deprecationReason": null
21400          }
21401        ],
21402        "inputFields": null,
21403        "interfaces": [],
21404        "enumValues": null,
21405        "possibleTypes": null
21406      },
21407      {
21408        "kind": "OBJECT",
21409        "name": "GitHubRepositoryMetadata",
21410        "description": null,
21411        "fields": [
21412          {
21413            "name": "defaultBranch",
21414            "description": null,
21415            "args": [],
21416            "type": {
21417              "kind": "SCALAR",
21418              "name": "String",
21419              "ofType": null
21420            },
21421            "isDeprecated": false,
21422            "deprecationReason": null
21423          },
21424          {
21425            "name": "githubRepoDescription",
21426            "description": null,
21427            "args": [],
21428            "type": {
21429              "kind": "SCALAR",
21430              "name": "String",
21431              "ofType": null
21432            },
21433            "isDeprecated": false,
21434            "deprecationReason": null
21435          },
21436          {
21437            "name": "githubRepoName",
21438            "description": null,
21439            "args": [],
21440            "type": {
21441              "kind": "NON_NULL",
21442              "name": null,
21443              "ofType": {
21444                "kind": "SCALAR",
21445                "name": "String",
21446                "ofType": null
21447              }
21448            },
21449            "isDeprecated": false,
21450            "deprecationReason": null
21451          },
21452          {
21453            "name": "githubRepoOwnerName",
21454            "description": null,
21455            "args": [],
21456            "type": {
21457              "kind": "NON_NULL",
21458              "name": null,
21459              "ofType": {
21460                "kind": "SCALAR",
21461                "name": "String",
21462                "ofType": null
21463              }
21464            },
21465            "isDeprecated": false,
21466            "deprecationReason": null
21467          },
21468          {
21469            "name": "githubRepoUrl",
21470            "description": null,
21471            "args": [],
21472            "type": {
21473              "kind": "NON_NULL",
21474              "name": null,
21475              "ofType": {
21476                "kind": "SCALAR",
21477                "name": "String",
21478                "ofType": null
21479              }
21480            },
21481            "isDeprecated": false,
21482            "deprecationReason": null
21483          },
21484          {
21485            "name": "lastPushed",
21486            "description": null,
21487            "args": [],
21488            "type": {
21489              "kind": "NON_NULL",
21490              "name": null,
21491              "ofType": {
21492                "kind": "SCALAR",
21493                "name": "DateTime",
21494                "ofType": null
21495              }
21496            },
21497            "isDeprecated": false,
21498            "deprecationReason": null
21499          },
21500          {
21501            "name": "lastUpdated",
21502            "description": null,
21503            "args": [],
21504            "type": {
21505              "kind": "NON_NULL",
21506              "name": null,
21507              "ofType": {
21508                "kind": "SCALAR",
21509                "name": "DateTime",
21510                "ofType": null
21511              }
21512            },
21513            "isDeprecated": false,
21514            "deprecationReason": null
21515          },
21516          {
21517            "name": "openGraphImageUrl",
21518            "description": null,
21519            "args": [],
21520            "type": {
21521              "kind": "SCALAR",
21522              "name": "String",
21523              "ofType": null
21524            },
21525            "isDeprecated": false,
21526            "deprecationReason": null
21527          },
21528          {
21529            "name": "private",
21530            "description": null,
21531            "args": [],
21532            "type": {
21533              "kind": "NON_NULL",
21534              "name": null,
21535              "ofType": {
21536                "kind": "SCALAR",
21537                "name": "Boolean",
21538                "ofType": null
21539              }
21540            },
21541            "isDeprecated": false,
21542            "deprecationReason": null
21543          }
21544        ],
21545        "inputFields": null,
21546        "interfaces": [],
21547        "enumValues": null,
21548        "possibleTypes": null
21549      },
21550      {
21551        "kind": "OBJECT",
21552        "name": "GitHubRepositoryMutation",
21553        "description": null,
21554        "fields": [
21555          {
21556            "name": "createGitHubRepository",
21557            "description": "Create a GitHub repository for an App",
21558            "args": [
21559              {
21560                "name": "githubRepositoryData",
21561                "description": null,
21562                "type": {
21563                  "kind": "NON_NULL",
21564                  "name": null,
21565                  "ofType": {
21566                    "kind": "INPUT_OBJECT",
21567                    "name": "CreateGitHubRepositoryInput",
21568                    "ofType": null
21569                  }
21570                },
21571                "defaultValue": null,
21572                "isDeprecated": false,
21573                "deprecationReason": null
21574              }
21575            ],
21576            "type": {
21577              "kind": "NON_NULL",
21578              "name": null,
21579              "ofType": {
21580                "kind": "OBJECT",
21581                "name": "GitHubRepository",
21582                "ofType": null
21583              }
21584            },
21585            "isDeprecated": false,
21586            "deprecationReason": null
21587          },
21588          {
21589            "name": "deleteGitHubRepository",
21590            "description": "Delete a GitHub repository by ID",
21591            "args": [
21592              {
21593                "name": "githubRepositoryId",
21594                "description": null,
21595                "type": {
21596                  "kind": "NON_NULL",
21597                  "name": null,
21598                  "ofType": {
21599                    "kind": "SCALAR",
21600                    "name": "ID",
21601                    "ofType": null
21602                  }
21603                },
21604                "defaultValue": null,
21605                "isDeprecated": false,
21606                "deprecationReason": null
21607              }
21608            ],
21609            "type": {
21610              "kind": "NON_NULL",
21611              "name": null,
21612              "ofType": {
21613                "kind": "OBJECT",
21614                "name": "GitHubRepository",
21615                "ofType": null
21616              }
21617            },
21618            "isDeprecated": false,
21619            "deprecationReason": null
21620          }
21621        ],
21622        "inputFields": null,
21623        "interfaces": [],
21624        "enumValues": null,
21625        "possibleTypes": null
21626      },
21627      {
21628        "kind": "OBJECT",
21629        "name": "GitHubRepositoryOwner",
21630        "description": null,
21631        "fields": [
21632          {
21633            "name": "avatarUrl",
21634            "description": null,
21635            "args": [],
21636            "type": {
21637              "kind": "NON_NULL",
21638              "name": null,
21639              "ofType": {
21640                "kind": "SCALAR",
21641                "name": "String",
21642                "ofType": null
21643              }
21644            },
21645            "isDeprecated": false,
21646            "deprecationReason": null
21647          },
21648          {
21649            "name": "id",
21650            "description": null,
21651            "args": [],
21652            "type": {
21653              "kind": "NON_NULL",
21654              "name": null,
21655              "ofType": {
21656                "kind": "SCALAR",
21657                "name": "Int",
21658                "ofType": null
21659              }
21660            },
21661            "isDeprecated": false,
21662            "deprecationReason": null
21663          },
21664          {
21665            "name": "login",
21666            "description": null,
21667            "args": [],
21668            "type": {
21669              "kind": "NON_NULL",
21670              "name": null,
21671              "ofType": {
21672                "kind": "SCALAR",
21673                "name": "String",
21674                "ofType": null
21675              }
21676            },
21677            "isDeprecated": false,
21678            "deprecationReason": null
21679          },
21680          {
21681            "name": "url",
21682            "description": null,
21683            "args": [],
21684            "type": {
21685              "kind": "NON_NULL",
21686              "name": null,
21687              "ofType": {
21688                "kind": "SCALAR",
21689                "name": "String",
21690                "ofType": null
21691              }
21692            },
21693            "isDeprecated": false,
21694            "deprecationReason": null
21695          }
21696        ],
21697        "inputFields": null,
21698        "interfaces": [],
21699        "enumValues": null,
21700        "possibleTypes": null
21701      },
21702      {
21703        "kind": "OBJECT",
21704        "name": "GitHubRepositoryPaginationResult",
21705        "description": null,
21706        "fields": [
21707          {
21708            "name": "repositories",
21709            "description": null,
21710            "args": [],
21711            "type": {
21712              "kind": "NON_NULL",
21713              "name": null,
21714              "ofType": {
21715                "kind": "LIST",
21716                "name": null,
21717                "ofType": {
21718                  "kind": "NON_NULL",
21719                  "name": null,
21720                  "ofType": {
21721                    "kind": "OBJECT",
21722                    "name": "GitHubAppInstallationAccessibleRepository",
21723                    "ofType": null
21724                  }
21725                }
21726              }
21727            },
21728            "isDeprecated": false,
21729            "deprecationReason": null
21730          },
21731          {
21732            "name": "totalCount",
21733            "description": null,
21734            "args": [],
21735            "type": {
21736              "kind": "NON_NULL",
21737              "name": null,
21738              "ofType": {
21739                "kind": "SCALAR",
21740                "name": "Int",
21741                "ofType": null
21742              }
21743            },
21744            "isDeprecated": false,
21745            "deprecationReason": null
21746          }
21747        ],
21748        "inputFields": null,
21749        "interfaces": [],
21750        "enumValues": null,
21751        "possibleTypes": null
21752      },
21753      {
21754        "kind": "OBJECT",
21755        "name": "GitHubRepositorySettings",
21756        "description": null,
21757        "fields": [
21758          {
21759            "name": "app",
21760            "description": null,
21761            "args": [],
21762            "type": {
21763              "kind": "NON_NULL",
21764              "name": null,
21765              "ofType": {
21766                "kind": "OBJECT",
21767                "name": "App",
21768                "ofType": null
21769              }
21770            },
21771            "isDeprecated": false,
21772            "deprecationReason": null
21773          },
21774          {
21775            "name": "baseDirectory",
21776            "description": null,
21777            "args": [],
21778            "type": {
21779              "kind": "NON_NULL",
21780              "name": null,
21781              "ofType": {
21782                "kind": "SCALAR",
21783                "name": "String",
21784                "ofType": null
21785              }
21786            },
21787            "isDeprecated": false,
21788            "deprecationReason": null
21789          },
21790          {
21791            "name": "id",
21792            "description": null,
21793            "args": [],
21794            "type": {
21795              "kind": "NON_NULL",
21796              "name": null,
21797              "ofType": {
21798                "kind": "SCALAR",
21799                "name": "ID",
21800                "ofType": null
21801              }
21802            },
21803            "isDeprecated": false,
21804            "deprecationReason": null
21805          }
21806        ],
21807        "inputFields": null,
21808        "interfaces": [],
21809        "enumValues": null,
21810        "possibleTypes": null
21811      },
21812      {
21813        "kind": "OBJECT",
21814        "name": "GitHubRepositorySettingsMutation",
21815        "description": null,
21816        "fields": [
21817          {
21818            "name": "createGitHubRepositorySettings",
21819            "description": "Create GitHub repository settings for an App",
21820            "args": [
21821              {
21822                "name": "githubRepositorySettingsData",
21823                "description": null,
21824                "type": {
21825                  "kind": "NON_NULL",
21826                  "name": null,
21827                  "ofType": {
21828                    "kind": "INPUT_OBJECT",
21829                    "name": "CreateGitHubRepositorySettingsInput",
21830                    "ofType": null
21831                  }
21832                },
21833                "defaultValue": null,
21834                "isDeprecated": false,
21835                "deprecationReason": null
21836              }
21837            ],
21838            "type": {
21839              "kind": "NON_NULL",
21840              "name": null,
21841              "ofType": {
21842                "kind": "OBJECT",
21843                "name": "GitHubRepositorySettings",
21844                "ofType": null
21845              }
21846            },
21847            "isDeprecated": false,
21848            "deprecationReason": null
21849          },
21850          {
21851            "name": "deleteGitHubRepositorySettings",
21852            "description": "Delete GitHub repository settings by ID",
21853            "args": [
21854              {
21855                "name": "githubRepositorySettingsId",
21856                "description": null,
21857                "type": {
21858                  "kind": "NON_NULL",
21859                  "name": null,
21860                  "ofType": {
21861                    "kind": "SCALAR",
21862                    "name": "ID",
21863                    "ofType": null
21864                  }
21865                },
21866                "defaultValue": null,
21867                "isDeprecated": false,
21868                "deprecationReason": null
21869              }
21870            ],
21871            "type": {
21872              "kind": "NON_NULL",
21873              "name": null,
21874              "ofType": {
21875                "kind": "OBJECT",
21876                "name": "GitHubRepositorySettings",
21877                "ofType": null
21878              }
21879            },
21880            "isDeprecated": false,
21881            "deprecationReason": null
21882          },
21883          {
21884            "name": "updateGitHubRepositorySettings",
21885            "description": "Update GitHub repository settings",
21886            "args": [
21887              {
21888                "name": "githubRepositorySettingsData",
21889                "description": null,
21890                "type": {
21891                  "kind": "NON_NULL",
21892                  "name": null,
21893                  "ofType": {
21894                    "kind": "INPUT_OBJECT",
21895                    "name": "UpdateGitHubRepositorySettingsInput",
21896                    "ofType": null
21897                  }
21898                },
21899                "defaultValue": null,
21900                "isDeprecated": false,
21901                "deprecationReason": null
21902              },
21903              {
21904                "name": "githubRepositorySettingsId",
21905                "description": null,
21906                "type": {
21907                  "kind": "NON_NULL",
21908                  "name": null,
21909                  "ofType": {
21910                    "kind": "SCALAR",
21911                    "name": "ID",
21912                    "ofType": null
21913                  }
21914                },
21915                "defaultValue": null,
21916                "isDeprecated": false,
21917                "deprecationReason": null
21918              }
21919            ],
21920            "type": {
21921              "kind": "NON_NULL",
21922              "name": null,
21923              "ofType": {
21924                "kind": "OBJECT",
21925                "name": "GitHubRepositorySettings",
21926                "ofType": null
21927              }
21928            },
21929            "isDeprecated": false,
21930            "deprecationReason": null
21931          }
21932        ],
21933        "inputFields": null,
21934        "interfaces": [],
21935        "enumValues": null,
21936        "possibleTypes": null
21937      },
21938      {
21939        "kind": "OBJECT",
21940        "name": "GitHubUser",
21941        "description": null,
21942        "fields": [
21943          {
21944            "name": "githubUserIdentifier",
21945            "description": null,
21946            "args": [],
21947            "type": {
21948              "kind": "NON_NULL",
21949              "name": null,
21950              "ofType": {
21951                "kind": "SCALAR",
21952                "name": "String",
21953                "ofType": null
21954              }
21955            },
21956            "isDeprecated": false,
21957            "deprecationReason": null
21958          },
21959          {
21960            "name": "id",
21961            "description": null,
21962            "args": [],
21963            "type": {
21964              "kind": "NON_NULL",
21965              "name": null,
21966              "ofType": {
21967                "kind": "SCALAR",
21968                "name": "ID",
21969                "ofType": null
21970              }
21971            },
21972            "isDeprecated": false,
21973            "deprecationReason": null
21974          },
21975          {
21976            "name": "metadata",
21977            "description": null,
21978            "args": [],
21979            "type": {
21980              "kind": "OBJECT",
21981              "name": "GitHubUserMetadata",
21982              "ofType": null
21983            },
21984            "isDeprecated": false,
21985            "deprecationReason": null
21986          },
21987          {
21988            "name": "userActor",
21989            "description": null,
21990            "args": [],
21991            "type": {
21992              "kind": "NON_NULL",
21993              "name": null,
21994              "ofType": {
21995                "kind": "INTERFACE",
21996                "name": "UserActor",
21997                "ofType": null
21998              }
21999            },
22000            "isDeprecated": false,
22001            "deprecationReason": null
22002          }
22003        ],
22004        "inputFields": null,
22005        "interfaces": [],
22006        "enumValues": null,
22007        "possibleTypes": null
22008      },
22009      {
22010        "kind": "OBJECT",
22011        "name": "GitHubUserMetadata",
22012        "description": null,
22013        "fields": [
22014          {
22015            "name": "avatarUrl",
22016            "description": null,
22017            "args": [],
22018            "type": {
22019              "kind": "NON_NULL",
22020              "name": null,
22021              "ofType": {
22022                "kind": "SCALAR",
22023                "name": "String",
22024                "ofType": null
22025              }
22026            },
22027            "isDeprecated": false,
22028            "deprecationReason": null
22029          },
22030          {
22031            "name": "login",
22032            "description": null,
22033            "args": [],
22034            "type": {
22035              "kind": "NON_NULL",
22036              "name": null,
22037              "ofType": {
22038                "kind": "SCALAR",
22039                "name": "String",
22040                "ofType": null
22041              }
22042            },
22043            "isDeprecated": false,
22044            "deprecationReason": null
22045          },
22046          {
22047            "name": "name",
22048            "description": null,
22049            "args": [],
22050            "type": {
22051              "kind": "SCALAR",
22052              "name": "String",
22053              "ofType": null
22054            },
22055            "isDeprecated": false,
22056            "deprecationReason": null
22057          },
22058          {
22059            "name": "url",
22060            "description": null,
22061            "args": [],
22062            "type": {
22063              "kind": "NON_NULL",
22064              "name": null,
22065              "ofType": {
22066                "kind": "SCALAR",
22067                "name": "String",
22068                "ofType": null
22069              }
22070            },
22071            "isDeprecated": false,
22072            "deprecationReason": null
22073          }
22074        ],
22075        "inputFields": null,
22076        "interfaces": [],
22077        "enumValues": null,
22078        "possibleTypes": null
22079      },
22080      {
22081        "kind": "OBJECT",
22082        "name": "GitHubUserMutation",
22083        "description": null,
22084        "fields": [
22085          {
22086            "name": "deleteGitHubUser",
22087            "description": "Delete a GitHub User by ID",
22088            "args": [
22089              {
22090                "name": "id",
22091                "description": null,
22092                "type": {
22093                  "kind": "NON_NULL",
22094                  "name": null,
22095                  "ofType": {
22096                    "kind": "SCALAR",
22097                    "name": "ID",
22098                    "ofType": null
22099                  }
22100                },
22101                "defaultValue": null,
22102                "isDeprecated": false,
22103                "deprecationReason": null
22104              }
22105            ],
22106            "type": {
22107              "kind": "NON_NULL",
22108              "name": null,
22109              "ofType": {
22110                "kind": "OBJECT",
22111                "name": "DeleteGitHubUserResult",
22112                "ofType": null
22113              }
22114            },
22115            "isDeprecated": false,
22116            "deprecationReason": null
22117          }
22118        ],
22119        "inputFields": null,
22120        "interfaces": [],
22121        "enumValues": null,
22122        "possibleTypes": null
22123      },
22124      {
22125        "kind": "OBJECT",
22126        "name": "GoogleServiceAccountKey",
22127        "description": null,
22128        "fields": [
22129          {
22130            "name": "account",
22131            "description": null,
22132            "args": [],
22133            "type": {
22134              "kind": "NON_NULL",
22135              "name": null,
22136              "ofType": {
22137                "kind": "OBJECT",
22138                "name": "Account",
22139                "ofType": null
22140              }
22141            },
22142            "isDeprecated": false,
22143            "deprecationReason": null
22144          },
22145          {
22146            "name": "clientEmail",
22147            "description": null,
22148            "args": [],
22149            "type": {
22150              "kind": "NON_NULL",
22151              "name": null,
22152              "ofType": {
22153                "kind": "SCALAR",
22154                "name": "String",
22155                "ofType": null
22156              }
22157            },
22158            "isDeprecated": false,
22159            "deprecationReason": null
22160          },
22161          {
22162            "name": "clientIdentifier",
22163            "description": null,
22164            "args": [],
22165            "type": {
22166              "kind": "NON_NULL",
22167              "name": null,
22168              "ofType": {
22169                "kind": "SCALAR",
22170                "name": "String",
22171                "ofType": null
22172              }
22173            },
22174            "isDeprecated": false,
22175            "deprecationReason": null
22176          },
22177          {
22178            "name": "createdAt",
22179            "description": null,
22180            "args": [],
22181            "type": {
22182              "kind": "NON_NULL",
22183              "name": null,
22184              "ofType": {
22185                "kind": "SCALAR",
22186                "name": "DateTime",
22187                "ofType": null
22188              }
22189            },
22190            "isDeprecated": false,
22191            "deprecationReason": null
22192          },
22193          {
22194            "name": "id",
22195            "description": null,
22196            "args": [],
22197            "type": {
22198              "kind": "NON_NULL",
22199              "name": null,
22200              "ofType": {
22201                "kind": "SCALAR",
22202                "name": "ID",
22203                "ofType": null
22204              }
22205            },
22206            "isDeprecated": false,
22207            "deprecationReason": null
22208          },
22209          {
22210            "name": "privateKeyIdentifier",
22211            "description": null,
22212            "args": [],
22213            "type": {
22214              "kind": "NON_NULL",
22215              "name": null,
22216              "ofType": {
22217                "kind": "SCALAR",
22218                "name": "String",
22219                "ofType": null
22220              }
22221            },
22222            "isDeprecated": false,
22223            "deprecationReason": null
22224          },
22225          {
22226            "name": "projectIdentifier",
22227            "description": null,
22228            "args": [],
22229            "type": {
22230              "kind": "NON_NULL",
22231              "name": null,
22232              "ofType": {
22233                "kind": "SCALAR",
22234                "name": "String",
22235                "ofType": null
22236              }
22237            },
22238            "isDeprecated": false,
22239            "deprecationReason": null
22240          },
22241          {
22242            "name": "updatedAt",
22243            "description": null,
22244            "args": [],
22245            "type": {
22246              "kind": "NON_NULL",
22247              "name": null,
22248              "ofType": {
22249                "kind": "SCALAR",
22250                "name": "DateTime",
22251                "ofType": null
22252              }
22253            },
22254            "isDeprecated": false,
22255            "deprecationReason": null
22256          }
22257        ],
22258        "inputFields": null,
22259        "interfaces": [],
22260        "enumValues": null,
22261        "possibleTypes": null
22262      },
22263      {
22264        "kind": "INPUT_OBJECT",
22265        "name": "GoogleServiceAccountKeyInput",
22266        "description": null,
22267        "fields": null,
22268        "inputFields": [
22269          {
22270            "name": "jsonKey",
22271            "description": null,
22272            "type": {
22273              "kind": "NON_NULL",
22274              "name": null,
22275              "ofType": {
22276                "kind": "SCALAR",
22277                "name": "JSONObject",
22278                "ofType": null
22279              }
22280            },
22281            "defaultValue": null,
22282            "isDeprecated": false,
22283            "deprecationReason": null
22284          }
22285        ],
22286        "interfaces": null,
22287        "enumValues": null,
22288        "possibleTypes": null
22289      },
22290      {
22291        "kind": "OBJECT",
22292        "name": "GoogleServiceAccountKeyMutation",
22293        "description": null,
22294        "fields": [
22295          {
22296            "name": "createGoogleServiceAccountKey",
22297            "description": "Create a Google Service Account Key",
22298            "args": [
22299              {
22300                "name": "accountId",
22301                "description": null,
22302                "type": {
22303                  "kind": "NON_NULL",
22304                  "name": null,
22305                  "ofType": {
22306                    "kind": "SCALAR",
22307                    "name": "ID",
22308                    "ofType": null
22309                  }
22310                },
22311                "defaultValue": null,
22312                "isDeprecated": false,
22313                "deprecationReason": null
22314              },
22315              {
22316                "name": "googleServiceAccountKeyInput",
22317                "description": null,
22318                "type": {
22319                  "kind": "NON_NULL",
22320                  "name": null,
22321                  "ofType": {
22322                    "kind": "INPUT_OBJECT",
22323                    "name": "GoogleServiceAccountKeyInput",
22324                    "ofType": null
22325                  }
22326                },
22327                "defaultValue": null,
22328                "isDeprecated": false,
22329                "deprecationReason": null
22330              }
22331            ],
22332            "type": {
22333              "kind": "NON_NULL",
22334              "name": null,
22335              "ofType": {
22336                "kind": "OBJECT",
22337                "name": "GoogleServiceAccountKey",
22338                "ofType": null
22339              }
22340            },
22341            "isDeprecated": false,
22342            "deprecationReason": null
22343          },
22344          {
22345            "name": "deleteGoogleServiceAccountKey",
22346            "description": "Delete a Google Service Account Key",
22347            "args": [
22348              {
22349                "name": "id",
22350                "description": null,
22351                "type": {
22352                  "kind": "NON_NULL",
22353                  "name": null,
22354                  "ofType": {
22355                    "kind": "SCALAR",
22356                    "name": "ID",
22357                    "ofType": null
22358                  }
22359                },
22360                "defaultValue": null,
22361                "isDeprecated": false,
22362                "deprecationReason": null
22363              }
22364            ],
22365            "type": {
22366              "kind": "NON_NULL",
22367              "name": null,
22368              "ofType": {
22369                "kind": "OBJECT",
22370                "name": "DeleteGoogleServiceAccountKeyResult",
22371                "ofType": null
22372              }
22373            },
22374            "isDeprecated": false,
22375            "deprecationReason": null
22376          }
22377        ],
22378        "inputFields": null,
22379        "interfaces": [],
22380        "enumValues": null,
22381        "possibleTypes": null
22382      },
22383      {
22384        "kind": "SCALAR",
22385        "name": "ID",
22386        "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.",
22387        "fields": null,
22388        "inputFields": null,
22389        "interfaces": null,
22390        "enumValues": null,
22391        "possibleTypes": null
22392      },
22393      {
22394        "kind": "INPUT_OBJECT",
22395        "name": "InsightsTimespan",
22396        "description": null,
22397        "fields": null,
22398        "inputFields": [
22399          {
22400            "name": "end",
22401            "description": null,
22402            "type": {
22403              "kind": "NON_NULL",
22404              "name": null,
22405              "ofType": {
22406                "kind": "SCALAR",
22407                "name": "DateTime",
22408                "ofType": null
22409              }
22410            },
22411            "defaultValue": null,
22412            "isDeprecated": false,
22413            "deprecationReason": null
22414          },
22415          {
22416            "name": "start",
22417            "description": null,
22418            "type": {
22419              "kind": "NON_NULL",
22420              "name": null,
22421              "ofType": {
22422                "kind": "SCALAR",
22423                "name": "DateTime",
22424                "ofType": null
22425              }
22426            },
22427            "defaultValue": null,
22428            "isDeprecated": false,
22429            "deprecationReason": null
22430          }
22431        ],
22432        "interfaces": null,
22433        "enumValues": null,
22434        "possibleTypes": null
22435      },
22436      {
22437        "kind": "SCALAR",
22438        "name": "Int",
22439        "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.",
22440        "fields": null,
22441        "inputFields": null,
22442        "interfaces": null,
22443        "enumValues": null,
22444        "possibleTypes": null
22445      },
22446      {
22447        "kind": "OBJECT",
22448        "name": "Invoice",
22449        "description": null,
22450        "fields": [
22451          {
22452            "name": "amountDue",
22453            "description": "The total amount due for the invoice, in cents",
22454            "args": [],
22455            "type": {
22456              "kind": "NON_NULL",
22457              "name": null,
22458              "ofType": {
22459                "kind": "SCALAR",
22460                "name": "Int",
22461                "ofType": null
22462              }
22463            },
22464            "isDeprecated": false,
22465            "deprecationReason": null
22466          },
22467          {
22468            "name": "amountPaid",
22469            "description": "The total amount that has been paid, considering any discounts or account credit. Value is in cents.",
22470            "args": [],
22471            "type": {
22472              "kind": "NON_NULL",
22473              "name": null,
22474              "ofType": {
22475                "kind": "SCALAR",
22476                "name": "Int",
22477                "ofType": null
22478              }
22479            },
22480            "isDeprecated": false,
22481            "deprecationReason": null
22482          },
22483          {
22484            "name": "amountRemaining",
22485            "description": "The total amount that needs to be paid, considering any discounts or account credit. Value is in cents.",
22486            "args": [],
22487            "type": {
22488              "kind": "NON_NULL",
22489              "name": null,
22490              "ofType": {
22491                "kind": "SCALAR",
22492                "name": "Int",
22493                "ofType": null
22494              }
22495            },
22496            "isDeprecated": false,
22497            "deprecationReason": null
22498          },
22499          {
22500            "name": "discount",
22501            "description": null,
22502            "args": [],
22503            "type": {
22504              "kind": "OBJECT",
22505              "name": "InvoiceDiscount",
22506              "ofType": null
22507            },
22508            "isDeprecated": false,
22509            "deprecationReason": null
22510          },
22511          {
22512            "name": "id",
22513            "description": null,
22514            "args": [],
22515            "type": {
22516              "kind": "NON_NULL",
22517              "name": null,
22518              "ofType": {
22519                "kind": "SCALAR",
22520                "name": "ID",
22521                "ofType": null
22522              }
22523            },
22524            "isDeprecated": false,
22525            "deprecationReason": null
22526          },
22527          {
22528            "name": "lineItems",
22529            "description": null,
22530            "args": [],
22531            "type": {
22532              "kind": "NON_NULL",
22533              "name": null,
22534              "ofType": {
22535                "kind": "LIST",
22536                "name": null,
22537                "ofType": {
22538                  "kind": "NON_NULL",
22539                  "name": null,
22540                  "ofType": {
22541                    "kind": "OBJECT",
22542                    "name": "InvoiceLineItem",
22543                    "ofType": null
22544                  }
22545                }
22546              }
22547            },
22548            "isDeprecated": false,
22549            "deprecationReason": null
22550          },
22551          {
22552            "name": "period",
22553            "description": null,
22554            "args": [],
22555            "type": {
22556              "kind": "NON_NULL",
22557              "name": null,
22558              "ofType": {
22559                "kind": "OBJECT",
22560                "name": "InvoicePeriod",
22561                "ofType": null
22562              }
22563            },
22564            "isDeprecated": false,
22565            "deprecationReason": null
22566          },
22567          {
22568            "name": "startingBalance",
22569            "description": null,
22570            "args": [],
22571            "type": {
22572              "kind": "NON_NULL",
22573              "name": null,
22574              "ofType": {
22575                "kind": "SCALAR",
22576                "name": "Int",
22577                "ofType": null
22578              }
22579            },
22580            "isDeprecated": false,
22581            "deprecationReason": null
22582          },
22583          {
22584            "name": "subtotal",
22585            "description": null,
22586            "args": [],
22587            "type": {
22588              "kind": "NON_NULL",
22589              "name": null,
22590              "ofType": {
22591                "kind": "SCALAR",
22592                "name": "Int",
22593                "ofType": null
22594              }
22595            },
22596            "isDeprecated": false,
22597            "deprecationReason": null
22598          },
22599          {
22600            "name": "total",
22601            "description": null,
22602            "args": [],
22603            "type": {
22604              "kind": "NON_NULL",
22605              "name": null,
22606              "ofType": {
22607                "kind": "SCALAR",
22608                "name": "Int",
22609                "ofType": null
22610              }
22611            },
22612            "isDeprecated": false,
22613            "deprecationReason": null
22614          },
22615          {
22616            "name": "totalDiscountedAmount",
22617            "description": null,
22618            "args": [],
22619            "type": {
22620              "kind": "NON_NULL",
22621              "name": null,
22622              "ofType": {
22623                "kind": "SCALAR",
22624                "name": "Int",
22625                "ofType": null
22626              }
22627            },
22628            "isDeprecated": false,
22629            "deprecationReason": null
22630          }
22631        ],
22632        "inputFields": null,
22633        "interfaces": [],
22634        "enumValues": null,
22635        "possibleTypes": null
22636      },
22637      {
22638        "kind": "OBJECT",
22639        "name": "InvoiceDiscount",
22640        "description": null,
22641        "fields": [
22642          {
22643            "name": "amount",
22644            "description": "The coupon's discount value, in percentage or in dollar amount",
22645            "args": [],
22646            "type": {
22647              "kind": "NON_NULL",
22648              "name": null,
22649              "ofType": {
22650                "kind": "SCALAR",
22651                "name": "Int",
22652                "ofType": null
22653              }
22654            },
22655            "isDeprecated": false,
22656            "deprecationReason": null
22657          },
22658          {
22659            "name": "duration",
22660            "description": null,
22661            "args": [],
22662            "type": {
22663              "kind": "NON_NULL",
22664              "name": null,
22665              "ofType": {
22666                "kind": "SCALAR",
22667                "name": "String",
22668                "ofType": null
22669              }
22670            },
22671            "isDeprecated": false,
22672            "deprecationReason": null
22673          },
22674          {
22675            "name": "durationInMonths",
22676            "description": null,
22677            "args": [],
22678            "type": {
22679              "kind": "SCALAR",
22680              "name": "Int",
22681              "ofType": null
22682            },
22683            "isDeprecated": false,
22684            "deprecationReason": null
22685          },
22686          {
22687            "name": "id",
22688            "description": null,
22689            "args": [],
22690            "type": {
22691              "kind": "NON_NULL",
22692              "name": null,
22693              "ofType": {
22694                "kind": "SCALAR",
22695                "name": "ID",
22696                "ofType": null
22697              }
22698            },
22699            "isDeprecated": false,
22700            "deprecationReason": null
22701          },
22702          {
22703            "name": "name",
22704            "description": null,
22705            "args": [],
22706            "type": {
22707              "kind": "NON_NULL",
22708              "name": null,
22709              "ofType": {
22710                "kind": "SCALAR",
22711                "name": "String",
22712                "ofType": null
22713              }
22714            },
22715            "isDeprecated": false,
22716            "deprecationReason": null
22717          },
22718          {
22719            "name": "type",
22720            "description": null,
22721            "args": [],
22722            "type": {
22723              "kind": "NON_NULL",
22724              "name": null,
22725              "ofType": {
22726                "kind": "ENUM",
22727                "name": "InvoiceDiscountType",
22728                "ofType": null
22729              }
22730            },
22731            "isDeprecated": false,
22732            "deprecationReason": null
22733          }
22734        ],
22735        "inputFields": null,
22736        "interfaces": [],
22737        "enumValues": null,
22738        "possibleTypes": null
22739      },
22740      {
22741        "kind": "ENUM",
22742        "name": "InvoiceDiscountType",
22743        "description": null,
22744        "fields": null,
22745        "inputFields": null,
22746        "interfaces": null,
22747        "enumValues": [
22748          {
22749            "name": "AMOUNT",
22750            "description": null,
22751            "isDeprecated": false,
22752            "deprecationReason": null
22753          },
22754          {
22755            "name": "PERCENTAGE",
22756            "description": null,
22757            "isDeprecated": false,
22758            "deprecationReason": null
22759          }
22760        ],
22761        "possibleTypes": null
22762      },
22763      {
22764        "kind": "OBJECT",
22765        "name": "InvoiceLineItem",
22766        "description": null,
22767        "fields": [
22768          {
22769            "name": "amount",
22770            "description": "Line-item amount in cents",
22771            "args": [],
22772            "type": {
22773              "kind": "NON_NULL",
22774              "name": null,
22775              "ofType": {
22776                "kind": "SCALAR",
22777                "name": "Int",
22778                "ofType": null
22779              }
22780            },
22781            "isDeprecated": false,
22782            "deprecationReason": null
22783          },
22784          {
22785            "name": "description",
22786            "description": null,
22787            "args": [],
22788            "type": {
22789              "kind": "NON_NULL",
22790              "name": null,
22791              "ofType": {
22792                "kind": "SCALAR",
22793                "name": "String",
22794                "ofType": null
22795              }
22796            },
22797            "isDeprecated": false,
22798            "deprecationReason": null
22799          },
22800          {
22801            "name": "id",
22802            "description": null,
22803            "args": [],
22804            "type": {
22805              "kind": "NON_NULL",
22806              "name": null,
22807              "ofType": {
22808                "kind": "SCALAR",
22809                "name": "ID",
22810                "ofType": null
22811              }
22812            },
22813            "isDeprecated": false,
22814            "deprecationReason": null
22815          },
22816          {
22817            "name": "period",
22818            "description": null,
22819            "args": [],
22820            "type": {
22821              "kind": "NON_NULL",
22822              "name": null,
22823              "ofType": {
22824                "kind": "OBJECT",
22825                "name": "InvoicePeriod",
22826                "ofType": null
22827              }
22828            },
22829            "isDeprecated": false,
22830            "deprecationReason": null
22831          },
22832          {
22833            "name": "plan",
22834            "description": null,
22835            "args": [],
22836            "type": {
22837              "kind": "NON_NULL",
22838              "name": null,
22839              "ofType": {
22840                "kind": "OBJECT",
22841                "name": "InvoiceLineItemPlan",
22842                "ofType": null
22843              }
22844            },
22845            "isDeprecated": false,
22846            "deprecationReason": null
22847          },
22848          {
22849            "name": "proration",
22850            "description": null,
22851            "args": [],
22852            "type": {
22853              "kind": "NON_NULL",
22854              "name": null,
22855              "ofType": {
22856                "kind": "SCALAR",
22857                "name": "Boolean",
22858                "ofType": null
22859              }
22860            },
22861            "isDeprecated": false,
22862            "deprecationReason": null
22863          },
22864          {
22865            "name": "quantity",
22866            "description": null,
22867            "args": [],
22868            "type": {
22869              "kind": "NON_NULL",
22870              "name": null,
22871              "ofType": {
22872                "kind": "SCALAR",
22873                "name": "Int",
22874                "ofType": null
22875              }
22876            },
22877            "isDeprecated": false,
22878            "deprecationReason": null
22879          },
22880          {
22881            "name": "title",
22882            "description": null,
22883            "args": [],
22884            "type": {
22885              "kind": "NON_NULL",
22886              "name": null,
22887              "ofType": {
22888                "kind": "SCALAR",
22889                "name": "String",
22890                "ofType": null
22891              }
22892            },
22893            "isDeprecated": false,
22894            "deprecationReason": null
22895          }
22896        ],
22897        "inputFields": null,
22898        "interfaces": [],
22899        "enumValues": null,
22900        "possibleTypes": null
22901      },
22902      {
22903        "kind": "OBJECT",
22904        "name": "InvoiceLineItemPlan",
22905        "description": null,
22906        "fields": [
22907          {
22908            "name": "id",
22909            "description": null,
22910            "args": [],
22911            "type": {
22912              "kind": "NON_NULL",
22913              "name": null,
22914              "ofType": {
22915                "kind": "SCALAR",
22916                "name": "ID",
22917                "ofType": null
22918              }
22919            },
22920            "isDeprecated": false,
22921            "deprecationReason": null
22922          },
22923          {
22924            "name": "name",
22925            "description": null,
22926            "args": [],
22927            "type": {
22928              "kind": "NON_NULL",
22929              "name": null,
22930              "ofType": {
22931                "kind": "SCALAR",
22932                "name": "String",
22933                "ofType": null
22934              }
22935            },
22936            "isDeprecated": false,
22937            "deprecationReason": null
22938          }
22939        ],
22940        "inputFields": null,
22941        "interfaces": [],
22942        "enumValues": null,
22943        "possibleTypes": null
22944      },
22945      {
22946        "kind": "OBJECT",
22947        "name": "InvoicePeriod",
22948        "description": null,
22949        "fields": [
22950          {
22951            "name": "end",
22952            "description": null,
22953            "args": [],
22954            "type": {
22955              "kind": "NON_NULL",
22956              "name": null,
22957              "ofType": {
22958                "kind": "SCALAR",
22959                "name": "DateTime",
22960                "ofType": null
22961              }
22962            },
22963            "isDeprecated": false,
22964            "deprecationReason": null
22965          },
22966          {
22967            "name": "start",
22968            "description": null,
22969            "args": [],
22970            "type": {
22971              "kind": "NON_NULL",
22972              "name": null,
22973              "ofType": {
22974                "kind": "SCALAR",
22975                "name": "DateTime",
22976                "ofType": null
22977              }
22978            },
22979            "isDeprecated": false,
22980            "deprecationReason": null
22981          }
22982        ],
22983        "inputFields": null,
22984        "interfaces": [],
22985        "enumValues": null,
22986        "possibleTypes": null
22987      },
22988      {
22989        "kind": "OBJECT",
22990        "name": "InvoiceQuery",
22991        "description": null,
22992        "fields": [
22993          {
22994            "name": "previewInvoiceForSubscriptionUpdate",
22995            "description": "Preview an upgrade subscription invoice, with proration",
22996            "args": [
22997              {
22998                "name": "accountId",
22999                "description": null,
23000                "type": {
23001                  "kind": "NON_NULL",
23002                  "name": null,
23003                  "ofType": {
23004                    "kind": "SCALAR",
23005                    "name": "String",
23006                    "ofType": null
23007                  }
23008                },
23009                "defaultValue": null,
23010                "isDeprecated": false,
23011                "deprecationReason": null
23012              },
23013              {
23014                "name": "couponCode",
23015                "description": null,
23016                "type": {
23017                  "kind": "SCALAR",
23018                  "name": "String",
23019                  "ofType": null
23020                },
23021                "defaultValue": null,
23022                "isDeprecated": false,
23023                "deprecationReason": null
23024              },
23025              {
23026                "name": "newPlanIdentifier",
23027                "description": null,
23028                "type": {
23029                  "kind": "NON_NULL",
23030                  "name": null,
23031                  "ofType": {
23032                    "kind": "SCALAR",
23033                    "name": "String",
23034                    "ofType": null
23035                  }
23036                },
23037                "defaultValue": null,
23038                "isDeprecated": false,
23039                "deprecationReason": null
23040              }
23041            ],
23042            "type": {
23043              "kind": "NON_NULL",
23044              "name": null,
23045              "ofType": {
23046                "kind": "OBJECT",
23047                "name": "Invoice",
23048                "ofType": null
23049              }
23050            },
23051            "isDeprecated": false,
23052            "deprecationReason": null
23053          }
23054        ],
23055        "inputFields": null,
23056        "interfaces": [],
23057        "enumValues": null,
23058        "possibleTypes": null
23059      },
23060      {
23061        "kind": "OBJECT",
23062        "name": "IosAppBuildCredentials",
23063        "description": null,
23064        "fields": [
23065          {
23066            "name": "appleDevices",
23067            "description": null,
23068            "args": [],
23069            "type": {
23070              "kind": "LIST",
23071              "name": null,
23072              "ofType": {
23073                "kind": "OBJECT",
23074                "name": "AppleDevice",
23075                "ofType": null
23076              }
23077            },
23078            "isDeprecated": true,
23079            "deprecationReason": "Get Apple Devices from AppleProvisioningProfile instead"
23080          },
23081          {
23082            "name": "distributionCertificate",
23083            "description": null,
23084            "args": [],
23085            "type": {
23086              "kind": "OBJECT",
23087              "name": "AppleDistributionCertificate",
23088              "ofType": null
23089            },
23090            "isDeprecated": false,
23091            "deprecationReason": null
23092          },
23093          {
23094            "name": "id",
23095            "description": null,
23096            "args": [],
23097            "type": {
23098              "kind": "NON_NULL",
23099              "name": null,
23100              "ofType": {
23101                "kind": "SCALAR",
23102                "name": "ID",
23103                "ofType": null
23104              }
23105            },
23106            "isDeprecated": false,
23107            "deprecationReason": null
23108          },
23109          {
23110            "name": "iosAppCredentials",
23111            "description": null,
23112            "args": [],
23113            "type": {
23114              "kind": "NON_NULL",
23115              "name": null,
23116              "ofType": {
23117                "kind": "OBJECT",
23118                "name": "IosAppCredentials",
23119                "ofType": null
23120              }
23121            },
23122            "isDeprecated": false,
23123            "deprecationReason": null
23124          },
23125          {
23126            "name": "iosDistributionType",
23127            "description": null,
23128            "args": [],
23129            "type": {
23130              "kind": "NON_NULL",
23131              "name": null,
23132              "ofType": {
23133                "kind": "ENUM",
23134                "name": "IosDistributionType",
23135                "ofType": null
23136              }
23137            },
23138            "isDeprecated": false,
23139            "deprecationReason": null
23140          },
23141          {
23142            "name": "provisioningProfile",
23143            "description": null,
23144            "args": [],
23145            "type": {
23146              "kind": "OBJECT",
23147              "name": "AppleProvisioningProfile",
23148              "ofType": null
23149            },
23150            "isDeprecated": false,
23151            "deprecationReason": null
23152          }
23153        ],
23154        "inputFields": null,
23155        "interfaces": [],
23156        "enumValues": null,
23157        "possibleTypes": null
23158      },
23159      {
23160        "kind": "INPUT_OBJECT",
23161        "name": "IosAppBuildCredentialsFilter",
23162        "description": null,
23163        "fields": null,
23164        "inputFields": [
23165          {
23166            "name": "iosDistributionType",
23167            "description": null,
23168            "type": {
23169              "kind": "ENUM",
23170              "name": "IosDistributionType",
23171              "ofType": null
23172            },
23173            "defaultValue": null,
23174            "isDeprecated": false,
23175            "deprecationReason": null
23176          }
23177        ],
23178        "interfaces": null,
23179        "enumValues": null,
23180        "possibleTypes": null
23181      },
23182      {
23183        "kind": "INPUT_OBJECT",
23184        "name": "IosAppBuildCredentialsInput",
23185        "description": null,
23186        "fields": null,
23187        "inputFields": [
23188          {
23189            "name": "distributionCertificateId",
23190            "description": null,
23191            "type": {
23192              "kind": "NON_NULL",
23193              "name": null,
23194              "ofType": {
23195                "kind": "SCALAR",
23196                "name": "ID",
23197                "ofType": null
23198              }
23199            },
23200            "defaultValue": null,
23201            "isDeprecated": false,
23202            "deprecationReason": null
23203          },
23204          {
23205            "name": "iosDistributionType",
23206            "description": null,
23207            "type": {
23208              "kind": "NON_NULL",
23209              "name": null,
23210              "ofType": {
23211                "kind": "ENUM",
23212                "name": "IosDistributionType",
23213                "ofType": null
23214              }
23215            },
23216            "defaultValue": null,
23217            "isDeprecated": false,
23218            "deprecationReason": null
23219          },
23220          {
23221            "name": "provisioningProfileId",
23222            "description": null,
23223            "type": {
23224              "kind": "NON_NULL",
23225              "name": null,
23226              "ofType": {
23227                "kind": "SCALAR",
23228                "name": "ID",
23229                "ofType": null
23230              }
23231            },
23232            "defaultValue": null,
23233            "isDeprecated": false,
23234            "deprecationReason": null
23235          }
23236        ],
23237        "interfaces": null,
23238        "enumValues": null,
23239        "possibleTypes": null
23240      },
23241      {
23242        "kind": "OBJECT",
23243        "name": "IosAppBuildCredentialsMutation",
23244        "description": null,
23245        "fields": [
23246          {
23247            "name": "createIosAppBuildCredentials",
23248            "description": "Create a set of build credentials for an iOS app",
23249            "args": [
23250              {
23251                "name": "iosAppBuildCredentialsInput",
23252                "description": null,
23253                "type": {
23254                  "kind": "NON_NULL",
23255                  "name": null,
23256                  "ofType": {
23257                    "kind": "INPUT_OBJECT",
23258                    "name": "IosAppBuildCredentialsInput",
23259                    "ofType": null
23260                  }
23261                },
23262                "defaultValue": null,
23263                "isDeprecated": false,
23264                "deprecationReason": null
23265              },
23266              {
23267                "name": "iosAppCredentialsId",
23268                "description": null,
23269                "type": {
23270                  "kind": "NON_NULL",
23271                  "name": null,
23272                  "ofType": {
23273                    "kind": "SCALAR",
23274                    "name": "ID",
23275                    "ofType": null
23276                  }
23277                },
23278                "defaultValue": null,
23279                "isDeprecated": false,
23280                "deprecationReason": null
23281              }
23282            ],
23283            "type": {
23284              "kind": "NON_NULL",
23285              "name": null,
23286              "ofType": {
23287                "kind": "OBJECT",
23288                "name": "IosAppBuildCredentials",
23289                "ofType": null
23290              }
23291            },
23292            "isDeprecated": false,
23293            "deprecationReason": null
23294          },
23295          {
23296            "name": "deleteIosAppBuildCredentials",
23297            "description": "Disassociate the build credentials from an iOS app",
23298            "args": [
23299              {
23300                "name": "id",
23301                "description": null,
23302                "type": {
23303                  "kind": "NON_NULL",
23304                  "name": null,
23305                  "ofType": {
23306                    "kind": "SCALAR",
23307                    "name": "ID",
23308                    "ofType": null
23309                  }
23310                },
23311                "defaultValue": null,
23312                "isDeprecated": false,
23313                "deprecationReason": null
23314              }
23315            ],
23316            "type": {
23317              "kind": "NON_NULL",
23318              "name": null,
23319              "ofType": {
23320                "kind": "OBJECT",
23321                "name": "DeleteIosAppBuildCredentialsResult",
23322                "ofType": null
23323              }
23324            },
23325            "isDeprecated": false,
23326            "deprecationReason": null
23327          },
23328          {
23329            "name": "setDistributionCertificate",
23330            "description": "Set the distribution certificate to be used for an iOS app",
23331            "args": [
23332              {
23333                "name": "distributionCertificateId",
23334                "description": null,
23335                "type": {
23336                  "kind": "NON_NULL",
23337                  "name": null,
23338                  "ofType": {
23339                    "kind": "SCALAR",
23340                    "name": "ID",
23341                    "ofType": null
23342                  }
23343                },
23344                "defaultValue": null,
23345                "isDeprecated": false,
23346                "deprecationReason": null
23347              },
23348              {
23349                "name": "id",
23350                "description": null,
23351                "type": {
23352                  "kind": "NON_NULL",
23353                  "name": null,
23354                  "ofType": {
23355                    "kind": "SCALAR",
23356                    "name": "ID",
23357                    "ofType": null
23358                  }
23359                },
23360                "defaultValue": null,
23361                "isDeprecated": false,
23362                "deprecationReason": null
23363              }
23364            ],
23365            "type": {
23366              "kind": "NON_NULL",
23367              "name": null,
23368              "ofType": {
23369                "kind": "OBJECT",
23370                "name": "IosAppBuildCredentials",
23371                "ofType": null
23372              }
23373            },
23374            "isDeprecated": false,
23375            "deprecationReason": null
23376          },
23377          {
23378            "name": "setProvisioningProfile",
23379            "description": "Set the provisioning profile to be used for an iOS app",
23380            "args": [
23381              {
23382                "name": "id",
23383                "description": null,
23384                "type": {
23385                  "kind": "NON_NULL",
23386                  "name": null,
23387                  "ofType": {
23388                    "kind": "SCALAR",
23389                    "name": "ID",
23390                    "ofType": null
23391                  }
23392                },
23393                "defaultValue": null,
23394                "isDeprecated": false,
23395                "deprecationReason": null
23396              },
23397              {
23398                "name": "provisioningProfileId",
23399                "description": null,
23400                "type": {
23401                  "kind": "NON_NULL",
23402                  "name": null,
23403                  "ofType": {
23404                    "kind": "SCALAR",
23405                    "name": "ID",
23406                    "ofType": null
23407                  }
23408                },
23409                "defaultValue": null,
23410                "isDeprecated": false,
23411                "deprecationReason": null
23412              }
23413            ],
23414            "type": {
23415              "kind": "NON_NULL",
23416              "name": null,
23417              "ofType": {
23418                "kind": "OBJECT",
23419                "name": "IosAppBuildCredentials",
23420                "ofType": null
23421              }
23422            },
23423            "isDeprecated": false,
23424            "deprecationReason": null
23425          }
23426        ],
23427        "inputFields": null,
23428        "interfaces": [],
23429        "enumValues": null,
23430        "possibleTypes": null
23431      },
23432      {
23433        "kind": "OBJECT",
23434        "name": "IosAppCredentials",
23435        "description": null,
23436        "fields": [
23437          {
23438            "name": "app",
23439            "description": null,
23440            "args": [],
23441            "type": {
23442              "kind": "NON_NULL",
23443              "name": null,
23444              "ofType": {
23445                "kind": "OBJECT",
23446                "name": "App",
23447                "ofType": null
23448              }
23449            },
23450            "isDeprecated": false,
23451            "deprecationReason": null
23452          },
23453          {
23454            "name": "appStoreConnectApiKeyForSubmissions",
23455            "description": null,
23456            "args": [],
23457            "type": {
23458              "kind": "OBJECT",
23459              "name": "AppStoreConnectApiKey",
23460              "ofType": null
23461            },
23462            "isDeprecated": false,
23463            "deprecationReason": null
23464          },
23465          {
23466            "name": "appleAppIdentifier",
23467            "description": null,
23468            "args": [],
23469            "type": {
23470              "kind": "NON_NULL",
23471              "name": null,
23472              "ofType": {
23473                "kind": "OBJECT",
23474                "name": "AppleAppIdentifier",
23475                "ofType": null
23476              }
23477            },
23478            "isDeprecated": false,
23479            "deprecationReason": null
23480          },
23481          {
23482            "name": "appleTeam",
23483            "description": null,
23484            "args": [],
23485            "type": {
23486              "kind": "OBJECT",
23487              "name": "AppleTeam",
23488              "ofType": null
23489            },
23490            "isDeprecated": false,
23491            "deprecationReason": null
23492          },
23493          {
23494            "name": "id",
23495            "description": null,
23496            "args": [],
23497            "type": {
23498              "kind": "NON_NULL",
23499              "name": null,
23500              "ofType": {
23501                "kind": "SCALAR",
23502                "name": "ID",
23503                "ofType": null
23504              }
23505            },
23506            "isDeprecated": false,
23507            "deprecationReason": null
23508          },
23509          {
23510            "name": "iosAppBuildCredentialsArray",
23511            "description": null,
23512            "args": [
23513              {
23514                "name": "filter",
23515                "description": null,
23516                "type": {
23517                  "kind": "INPUT_OBJECT",
23518                  "name": "IosAppBuildCredentialsFilter",
23519                  "ofType": null
23520                },
23521                "defaultValue": null,
23522                "isDeprecated": false,
23523                "deprecationReason": null
23524              }
23525            ],
23526            "type": {
23527              "kind": "NON_NULL",
23528              "name": null,
23529              "ofType": {
23530                "kind": "LIST",
23531                "name": null,
23532                "ofType": {
23533                  "kind": "NON_NULL",
23534                  "name": null,
23535                  "ofType": {
23536                    "kind": "OBJECT",
23537                    "name": "IosAppBuildCredentials",
23538                    "ofType": null
23539                  }
23540                }
23541              }
23542            },
23543            "isDeprecated": true,
23544            "deprecationReason": "use iosAppBuildCredentialsList instead"
23545          },
23546          {
23547            "name": "iosAppBuildCredentialsList",
23548            "description": null,
23549            "args": [
23550              {
23551                "name": "filter",
23552                "description": null,
23553                "type": {
23554                  "kind": "INPUT_OBJECT",
23555                  "name": "IosAppBuildCredentialsFilter",
23556                  "ofType": null
23557                },
23558                "defaultValue": null,
23559                "isDeprecated": false,
23560                "deprecationReason": null
23561              }
23562            ],
23563            "type": {
23564              "kind": "NON_NULL",
23565              "name": null,
23566              "ofType": {
23567                "kind": "LIST",
23568                "name": null,
23569                "ofType": {
23570                  "kind": "NON_NULL",
23571                  "name": null,
23572                  "ofType": {
23573                    "kind": "OBJECT",
23574                    "name": "IosAppBuildCredentials",
23575                    "ofType": null
23576                  }
23577                }
23578              }
23579            },
23580            "isDeprecated": false,
23581            "deprecationReason": null
23582          },
23583          {
23584            "name": "pushKey",
23585            "description": null,
23586            "args": [],
23587            "type": {
23588              "kind": "OBJECT",
23589              "name": "ApplePushKey",
23590              "ofType": null
23591            },
23592            "isDeprecated": false,
23593            "deprecationReason": null
23594          }
23595        ],
23596        "inputFields": null,
23597        "interfaces": [],
23598        "enumValues": null,
23599        "possibleTypes": null
23600      },
23601      {
23602        "kind": "INPUT_OBJECT",
23603        "name": "IosAppCredentialsFilter",
23604        "description": null,
23605        "fields": null,
23606        "inputFields": [
23607          {
23608            "name": "appleAppIdentifierId",
23609            "description": null,
23610            "type": {
23611              "kind": "SCALAR",
23612              "name": "String",
23613              "ofType": null
23614            },
23615            "defaultValue": null,
23616            "isDeprecated": false,
23617            "deprecationReason": null
23618          }
23619        ],
23620        "interfaces": null,
23621        "enumValues": null,
23622        "possibleTypes": null
23623      },
23624      {
23625        "kind": "INPUT_OBJECT",
23626        "name": "IosAppCredentialsInput",
23627        "description": null,
23628        "fields": null,
23629        "inputFields": [
23630          {
23631            "name": "appStoreConnectApiKeyForSubmissionsId",
23632            "description": null,
23633            "type": {
23634              "kind": "SCALAR",
23635              "name": "ID",
23636              "ofType": null
23637            },
23638            "defaultValue": null,
23639            "isDeprecated": false,
23640            "deprecationReason": null
23641          },
23642          {
23643            "name": "appleTeamId",
23644            "description": null,
23645            "type": {
23646              "kind": "SCALAR",
23647              "name": "ID",
23648              "ofType": null
23649            },
23650            "defaultValue": null,
23651            "isDeprecated": false,
23652            "deprecationReason": null
23653          },
23654          {
23655            "name": "pushKeyId",
23656            "description": null,
23657            "type": {
23658              "kind": "SCALAR",
23659              "name": "ID",
23660              "ofType": null
23661            },
23662            "defaultValue": null,
23663            "isDeprecated": false,
23664            "deprecationReason": null
23665          }
23666        ],
23667        "interfaces": null,
23668        "enumValues": null,
23669        "possibleTypes": null
23670      },
23671      {
23672        "kind": "OBJECT",
23673        "name": "IosAppCredentialsMutation",
23674        "description": null,
23675        "fields": [
23676          {
23677            "name": "createIosAppCredentials",
23678            "description": "Create a set of credentials for an iOS app",
23679            "args": [
23680              {
23681                "name": "appId",
23682                "description": null,
23683                "type": {
23684                  "kind": "NON_NULL",
23685                  "name": null,
23686                  "ofType": {
23687                    "kind": "SCALAR",
23688                    "name": "ID",
23689                    "ofType": null
23690                  }
23691                },
23692                "defaultValue": null,
23693                "isDeprecated": false,
23694                "deprecationReason": null
23695              },
23696              {
23697                "name": "appleAppIdentifierId",
23698                "description": null,
23699                "type": {
23700                  "kind": "NON_NULL",
23701                  "name": null,
23702                  "ofType": {
23703                    "kind": "SCALAR",
23704                    "name": "ID",
23705                    "ofType": null
23706                  }
23707                },
23708                "defaultValue": null,
23709                "isDeprecated": false,
23710                "deprecationReason": null
23711              },
23712              {
23713                "name": "iosAppCredentialsInput",
23714                "description": null,
23715                "type": {
23716                  "kind": "NON_NULL",
23717                  "name": null,
23718                  "ofType": {
23719                    "kind": "INPUT_OBJECT",
23720                    "name": "IosAppCredentialsInput",
23721                    "ofType": null
23722                  }
23723                },
23724                "defaultValue": null,
23725                "isDeprecated": false,
23726                "deprecationReason": null
23727              }
23728            ],
23729            "type": {
23730              "kind": "NON_NULL",
23731              "name": null,
23732              "ofType": {
23733                "kind": "OBJECT",
23734                "name": "IosAppCredentials",
23735                "ofType": null
23736              }
23737            },
23738            "isDeprecated": false,
23739            "deprecationReason": null
23740          },
23741          {
23742            "name": "deleteIosAppCredentials",
23743            "description": "Delete a set of credentials for an iOS app",
23744            "args": [
23745              {
23746                "name": "id",
23747                "description": null,
23748                "type": {
23749                  "kind": "NON_NULL",
23750                  "name": null,
23751                  "ofType": {
23752                    "kind": "SCALAR",
23753                    "name": "ID",
23754                    "ofType": null
23755                  }
23756                },
23757                "defaultValue": null,
23758                "isDeprecated": false,
23759                "deprecationReason": null
23760              }
23761            ],
23762            "type": {
23763              "kind": "NON_NULL",
23764              "name": null,
23765              "ofType": {
23766                "kind": "OBJECT",
23767                "name": "DeleteIosAppCredentialsResult",
23768                "ofType": null
23769              }
23770            },
23771            "isDeprecated": false,
23772            "deprecationReason": null
23773          },
23774          {
23775            "name": "setAppStoreConnectApiKeyForSubmissions",
23776            "description": "Set the App Store Connect Api Key to be used for submitting an iOS app",
23777            "args": [
23778              {
23779                "name": "ascApiKeyId",
23780                "description": null,
23781                "type": {
23782                  "kind": "NON_NULL",
23783                  "name": null,
23784                  "ofType": {
23785                    "kind": "SCALAR",
23786                    "name": "ID",
23787                    "ofType": null
23788                  }
23789                },
23790                "defaultValue": null,
23791                "isDeprecated": false,
23792                "deprecationReason": null
23793              },
23794              {
23795                "name": "id",
23796                "description": null,
23797                "type": {
23798                  "kind": "NON_NULL",
23799                  "name": null,
23800                  "ofType": {
23801                    "kind": "SCALAR",
23802                    "name": "ID",
23803                    "ofType": null
23804                  }
23805                },
23806                "defaultValue": null,
23807                "isDeprecated": false,
23808                "deprecationReason": null
23809              }
23810            ],
23811            "type": {
23812              "kind": "NON_NULL",
23813              "name": null,
23814              "ofType": {
23815                "kind": "OBJECT",
23816                "name": "IosAppCredentials",
23817                "ofType": null
23818              }
23819            },
23820            "isDeprecated": false,
23821            "deprecationReason": null
23822          },
23823          {
23824            "name": "setPushKey",
23825            "description": "Set the push key to be used in an iOS app",
23826            "args": [
23827              {
23828                "name": "id",
23829                "description": null,
23830                "type": {
23831                  "kind": "NON_NULL",
23832                  "name": null,
23833                  "ofType": {
23834                    "kind": "SCALAR",
23835                    "name": "ID",
23836                    "ofType": null
23837                  }
23838                },
23839                "defaultValue": null,
23840                "isDeprecated": false,
23841                "deprecationReason": null
23842              },
23843              {
23844                "name": "pushKeyId",
23845                "description": null,
23846                "type": {
23847                  "kind": "NON_NULL",
23848                  "name": null,
23849                  "ofType": {
23850                    "kind": "SCALAR",
23851                    "name": "ID",
23852                    "ofType": null
23853                  }
23854                },
23855                "defaultValue": null,
23856                "isDeprecated": false,
23857                "deprecationReason": null
23858              }
23859            ],
23860            "type": {
23861              "kind": "NON_NULL",
23862              "name": null,
23863              "ofType": {
23864                "kind": "OBJECT",
23865                "name": "IosAppCredentials",
23866                "ofType": null
23867              }
23868            },
23869            "isDeprecated": false,
23870            "deprecationReason": null
23871          }
23872        ],
23873        "inputFields": null,
23874        "interfaces": [],
23875        "enumValues": null,
23876        "possibleTypes": null
23877      },
23878      {
23879        "kind": "ENUM",
23880        "name": "IosBuildType",
23881        "description": "@deprecated Use developmentClient option instead.",
23882        "fields": null,
23883        "inputFields": null,
23884        "interfaces": null,
23885        "enumValues": [
23886          {
23887            "name": "DEVELOPMENT_CLIENT",
23888            "description": null,
23889            "isDeprecated": false,
23890            "deprecationReason": null
23891          },
23892          {
23893            "name": "RELEASE",
23894            "description": null,
23895            "isDeprecated": false,
23896            "deprecationReason": null
23897          }
23898        ],
23899        "possibleTypes": null
23900      },
23901      {
23902        "kind": "INPUT_OBJECT",
23903        "name": "IosBuilderEnvironmentInput",
23904        "description": null,
23905        "fields": null,
23906        "inputFields": [
23907          {
23908            "name": "bundler",
23909            "description": null,
23910            "type": {
23911              "kind": "SCALAR",
23912              "name": "String",
23913              "ofType": null
23914            },
23915            "defaultValue": null,
23916            "isDeprecated": false,
23917            "deprecationReason": null
23918          },
23919          {
23920            "name": "cocoapods",
23921            "description": null,
23922            "type": {
23923              "kind": "SCALAR",
23924              "name": "String",
23925              "ofType": null
23926            },
23927            "defaultValue": null,
23928            "isDeprecated": false,
23929            "deprecationReason": null
23930          },
23931          {
23932            "name": "env",
23933            "description": null,
23934            "type": {
23935              "kind": "SCALAR",
23936              "name": "JSONObject",
23937              "ofType": null
23938            },
23939            "defaultValue": null,
23940            "isDeprecated": false,
23941            "deprecationReason": null
23942          },
23943          {
23944            "name": "expoCli",
23945            "description": null,
23946            "type": {
23947              "kind": "SCALAR",
23948              "name": "String",
23949              "ofType": null
23950            },
23951            "defaultValue": null,
23952            "isDeprecated": false,
23953            "deprecationReason": null
23954          },
23955          {
23956            "name": "fastlane",
23957            "description": null,
23958            "type": {
23959              "kind": "SCALAR",
23960              "name": "String",
23961              "ofType": null
23962            },
23963            "defaultValue": null,
23964            "isDeprecated": false,
23965            "deprecationReason": null
23966          },
23967          {
23968            "name": "image",
23969            "description": null,
23970            "type": {
23971              "kind": "SCALAR",
23972              "name": "String",
23973              "ofType": null
23974            },
23975            "defaultValue": null,
23976            "isDeprecated": false,
23977            "deprecationReason": null
23978          },
23979          {
23980            "name": "node",
23981            "description": null,
23982            "type": {
23983              "kind": "SCALAR",
23984              "name": "String",
23985              "ofType": null
23986            },
23987            "defaultValue": null,
23988            "isDeprecated": false,
23989            "deprecationReason": null
23990          },
23991          {
23992            "name": "yarn",
23993            "description": null,
23994            "type": {
23995              "kind": "SCALAR",
23996              "name": "String",
23997              "ofType": null
23998            },
23999            "defaultValue": null,
24000            "isDeprecated": false,
24001            "deprecationReason": null
24002          }
24003        ],
24004        "interfaces": null,
24005        "enumValues": null,
24006        "possibleTypes": null
24007      },
24008      {
24009        "kind": "ENUM",
24010        "name": "IosDistributionType",
24011        "description": null,
24012        "fields": null,
24013        "inputFields": null,
24014        "interfaces": null,
24015        "enumValues": [
24016          {
24017            "name": "AD_HOC",
24018            "description": null,
24019            "isDeprecated": false,
24020            "deprecationReason": null
24021          },
24022          {
24023            "name": "APP_STORE",
24024            "description": null,
24025            "isDeprecated": false,
24026            "deprecationReason": null
24027          },
24028          {
24029            "name": "DEVELOPMENT",
24030            "description": null,
24031            "isDeprecated": false,
24032            "deprecationReason": null
24033          },
24034          {
24035            "name": "ENTERPRISE",
24036            "description": null,
24037            "isDeprecated": false,
24038            "deprecationReason": null
24039          }
24040        ],
24041        "possibleTypes": null
24042      },
24043      {
24044        "kind": "INPUT_OBJECT",
24045        "name": "IosJobDistributionCertificateInput",
24046        "description": null,
24047        "fields": null,
24048        "inputFields": [
24049          {
24050            "name": "dataBase64",
24051            "description": null,
24052            "type": {
24053              "kind": "NON_NULL",
24054              "name": null,
24055              "ofType": {
24056                "kind": "SCALAR",
24057                "name": "String",
24058                "ofType": null
24059              }
24060            },
24061            "defaultValue": null,
24062            "isDeprecated": false,
24063            "deprecationReason": null
24064          },
24065          {
24066            "name": "password",
24067            "description": null,
24068            "type": {
24069              "kind": "NON_NULL",
24070              "name": null,
24071              "ofType": {
24072                "kind": "SCALAR",
24073                "name": "String",
24074                "ofType": null
24075              }
24076            },
24077            "defaultValue": null,
24078            "isDeprecated": false,
24079            "deprecationReason": null
24080          }
24081        ],
24082        "interfaces": null,
24083        "enumValues": null,
24084        "possibleTypes": null
24085      },
24086      {
24087        "kind": "INPUT_OBJECT",
24088        "name": "IosJobInput",
24089        "description": null,
24090        "fields": null,
24091        "inputFields": [
24092          {
24093            "name": "applicationArchivePath",
24094            "description": null,
24095            "type": {
24096              "kind": "SCALAR",
24097              "name": "String",
24098              "ofType": null
24099            },
24100            "defaultValue": null,
24101            "isDeprecated": false,
24102            "deprecationReason": null
24103          },
24104          {
24105            "name": "artifactPath",
24106            "description": "@deprecated",
24107            "type": {
24108              "kind": "SCALAR",
24109              "name": "String",
24110              "ofType": null
24111            },
24112            "defaultValue": null,
24113            "isDeprecated": false,
24114            "deprecationReason": null
24115          },
24116          {
24117            "name": "buildArtifactPaths",
24118            "description": null,
24119            "type": {
24120              "kind": "LIST",
24121              "name": null,
24122              "ofType": {
24123                "kind": "NON_NULL",
24124                "name": null,
24125                "ofType": {
24126                  "kind": "SCALAR",
24127                  "name": "String",
24128                  "ofType": null
24129                }
24130              }
24131            },
24132            "defaultValue": null,
24133            "isDeprecated": false,
24134            "deprecationReason": null
24135          },
24136          {
24137            "name": "buildConfiguration",
24138            "description": null,
24139            "type": {
24140              "kind": "SCALAR",
24141              "name": "String",
24142              "ofType": null
24143            },
24144            "defaultValue": null,
24145            "isDeprecated": false,
24146            "deprecationReason": null
24147          },
24148          {
24149            "name": "buildProfile",
24150            "description": null,
24151            "type": {
24152              "kind": "SCALAR",
24153              "name": "String",
24154              "ofType": null
24155            },
24156            "defaultValue": null,
24157            "isDeprecated": false,
24158            "deprecationReason": null
24159          },
24160          {
24161            "name": "buildType",
24162            "description": "@deprecated",
24163            "type": {
24164              "kind": "ENUM",
24165              "name": "IosBuildType",
24166              "ofType": null
24167            },
24168            "defaultValue": null,
24169            "isDeprecated": false,
24170            "deprecationReason": null
24171          },
24172          {
24173            "name": "builderEnvironment",
24174            "description": null,
24175            "type": {
24176              "kind": "INPUT_OBJECT",
24177              "name": "IosBuilderEnvironmentInput",
24178              "ofType": null
24179            },
24180            "defaultValue": null,
24181            "isDeprecated": false,
24182            "deprecationReason": null
24183          },
24184          {
24185            "name": "cache",
24186            "description": null,
24187            "type": {
24188              "kind": "INPUT_OBJECT",
24189              "name": "BuildCacheInput",
24190              "ofType": null
24191            },
24192            "defaultValue": null,
24193            "isDeprecated": false,
24194            "deprecationReason": null
24195          },
24196          {
24197            "name": "customBuildConfig",
24198            "description": null,
24199            "type": {
24200              "kind": "INPUT_OBJECT",
24201              "name": "CustomBuildConfigInput",
24202              "ofType": null
24203            },
24204            "defaultValue": null,
24205            "isDeprecated": false,
24206            "deprecationReason": null
24207          },
24208          {
24209            "name": "developmentClient",
24210            "description": null,
24211            "type": {
24212              "kind": "SCALAR",
24213              "name": "Boolean",
24214              "ofType": null
24215            },
24216            "defaultValue": null,
24217            "isDeprecated": false,
24218            "deprecationReason": null
24219          },
24220          {
24221            "name": "distribution",
24222            "description": "@deprecated",
24223            "type": {
24224              "kind": "ENUM",
24225              "name": "DistributionType",
24226              "ofType": null
24227            },
24228            "defaultValue": null,
24229            "isDeprecated": false,
24230            "deprecationReason": null
24231          },
24232          {
24233            "name": "experimental",
24234            "description": null,
24235            "type": {
24236              "kind": "SCALAR",
24237              "name": "JSONObject",
24238              "ofType": null
24239            },
24240            "defaultValue": null,
24241            "isDeprecated": false,
24242            "deprecationReason": null
24243          },
24244          {
24245            "name": "mode",
24246            "description": null,
24247            "type": {
24248              "kind": "ENUM",
24249              "name": "BuildMode",
24250              "ofType": null
24251            },
24252            "defaultValue": null,
24253            "isDeprecated": false,
24254            "deprecationReason": null
24255          },
24256          {
24257            "name": "projectArchive",
24258            "description": null,
24259            "type": {
24260              "kind": "NON_NULL",
24261              "name": null,
24262              "ofType": {
24263                "kind": "INPUT_OBJECT",
24264                "name": "ProjectArchiveSourceInput",
24265                "ofType": null
24266              }
24267            },
24268            "defaultValue": null,
24269            "isDeprecated": false,
24270            "deprecationReason": null
24271          },
24272          {
24273            "name": "projectRootDirectory",
24274            "description": null,
24275            "type": {
24276              "kind": "NON_NULL",
24277              "name": null,
24278              "ofType": {
24279                "kind": "SCALAR",
24280                "name": "String",
24281                "ofType": null
24282              }
24283            },
24284            "defaultValue": null,
24285            "isDeprecated": false,
24286            "deprecationReason": null
24287          },
24288          {
24289            "name": "releaseChannel",
24290            "description": null,
24291            "type": {
24292              "kind": "SCALAR",
24293              "name": "String",
24294              "ofType": null
24295            },
24296            "defaultValue": null,
24297            "isDeprecated": false,
24298            "deprecationReason": null
24299          },
24300          {
24301            "name": "scheme",
24302            "description": null,
24303            "type": {
24304              "kind": "SCALAR",
24305              "name": "String",
24306              "ofType": null
24307            },
24308            "defaultValue": null,
24309            "isDeprecated": false,
24310            "deprecationReason": null
24311          },
24312          {
24313            "name": "secrets",
24314            "description": null,
24315            "type": {
24316              "kind": "INPUT_OBJECT",
24317              "name": "IosJobSecretsInput",
24318              "ofType": null
24319            },
24320            "defaultValue": null,
24321            "isDeprecated": false,
24322            "deprecationReason": null
24323          },
24324          {
24325            "name": "simulator",
24326            "description": null,
24327            "type": {
24328              "kind": "SCALAR",
24329              "name": "Boolean",
24330              "ofType": null
24331            },
24332            "defaultValue": null,
24333            "isDeprecated": false,
24334            "deprecationReason": null
24335          },
24336          {
24337            "name": "triggeredBy",
24338            "description": null,
24339            "type": {
24340              "kind": "ENUM",
24341              "name": "BuildTrigger",
24342              "ofType": null
24343            },
24344            "defaultValue": null,
24345            "isDeprecated": false,
24346            "deprecationReason": null
24347          },
24348          {
24349            "name": "type",
24350            "description": null,
24351            "type": {
24352              "kind": "NON_NULL",
24353              "name": null,
24354              "ofType": {
24355                "kind": "ENUM",
24356                "name": "BuildWorkflow",
24357                "ofType": null
24358              }
24359            },
24360            "defaultValue": null,
24361            "isDeprecated": false,
24362            "deprecationReason": null
24363          },
24364          {
24365            "name": "updates",
24366            "description": null,
24367            "type": {
24368              "kind": "INPUT_OBJECT",
24369              "name": "BuildUpdatesInput",
24370              "ofType": null
24371            },
24372            "defaultValue": null,
24373            "isDeprecated": false,
24374            "deprecationReason": null
24375          },
24376          {
24377            "name": "username",
24378            "description": null,
24379            "type": {
24380              "kind": "SCALAR",
24381              "name": "String",
24382              "ofType": null
24383            },
24384            "defaultValue": null,
24385            "isDeprecated": false,
24386            "deprecationReason": null
24387          },
24388          {
24389            "name": "version",
24390            "description": null,
24391            "type": {
24392              "kind": "INPUT_OBJECT",
24393              "name": "IosJobVersionInput",
24394              "ofType": null
24395            },
24396            "defaultValue": null,
24397            "isDeprecated": false,
24398            "deprecationReason": null
24399          }
24400        ],
24401        "interfaces": null,
24402        "enumValues": null,
24403        "possibleTypes": null
24404      },
24405      {
24406        "kind": "INPUT_OBJECT",
24407        "name": "IosJobOverridesInput",
24408        "description": null,
24409        "fields": null,
24410        "inputFields": [
24411          {
24412            "name": "applicationArchivePath",
24413            "description": null,
24414            "type": {
24415              "kind": "SCALAR",
24416              "name": "String",
24417              "ofType": null
24418            },
24419            "defaultValue": null,
24420            "isDeprecated": false,
24421            "deprecationReason": null
24422          },
24423          {
24424            "name": "artifactPath",
24425            "description": "@deprecated",
24426            "type": {
24427              "kind": "SCALAR",
24428              "name": "String",
24429              "ofType": null
24430            },
24431            "defaultValue": null,
24432            "isDeprecated": false,
24433            "deprecationReason": null
24434          },
24435          {
24436            "name": "buildArtifactPaths",
24437            "description": null,
24438            "type": {
24439              "kind": "LIST",
24440              "name": null,
24441              "ofType": {
24442                "kind": "NON_NULL",
24443                "name": null,
24444                "ofType": {
24445                  "kind": "SCALAR",
24446                  "name": "String",
24447                  "ofType": null
24448                }
24449              }
24450            },
24451            "defaultValue": null,
24452            "isDeprecated": false,
24453            "deprecationReason": null
24454          },
24455          {
24456            "name": "buildConfiguration",
24457            "description": null,
24458            "type": {
24459              "kind": "SCALAR",
24460              "name": "String",
24461              "ofType": null
24462            },
24463            "defaultValue": null,
24464            "isDeprecated": false,
24465            "deprecationReason": null
24466          },
24467          {
24468            "name": "buildProfile",
24469            "description": null,
24470            "type": {
24471              "kind": "SCALAR",
24472              "name": "String",
24473              "ofType": null
24474            },
24475            "defaultValue": null,
24476            "isDeprecated": false,
24477            "deprecationReason": null
24478          },
24479          {
24480            "name": "buildType",
24481            "description": "@deprecated",
24482            "type": {
24483              "kind": "ENUM",
24484              "name": "IosBuildType",
24485              "ofType": null
24486            },
24487            "defaultValue": null,
24488            "isDeprecated": false,
24489            "deprecationReason": null
24490          },
24491          {
24492            "name": "builderEnvironment",
24493            "description": null,
24494            "type": {
24495              "kind": "INPUT_OBJECT",
24496              "name": "IosBuilderEnvironmentInput",
24497              "ofType": null
24498            },
24499            "defaultValue": null,
24500            "isDeprecated": false,
24501            "deprecationReason": null
24502          },
24503          {
24504            "name": "cache",
24505            "description": null,
24506            "type": {
24507              "kind": "INPUT_OBJECT",
24508              "name": "BuildCacheInput",
24509              "ofType": null
24510            },
24511            "defaultValue": null,
24512            "isDeprecated": false,
24513            "deprecationReason": null
24514          },
24515          {
24516            "name": "developmentClient",
24517            "description": null,
24518            "type": {
24519              "kind": "SCALAR",
24520              "name": "Boolean",
24521              "ofType": null
24522            },
24523            "defaultValue": null,
24524            "isDeprecated": false,
24525            "deprecationReason": null
24526          },
24527          {
24528            "name": "distribution",
24529            "description": "@deprecated",
24530            "type": {
24531              "kind": "ENUM",
24532              "name": "DistributionType",
24533              "ofType": null
24534            },
24535            "defaultValue": null,
24536            "isDeprecated": false,
24537            "deprecationReason": null
24538          },
24539          {
24540            "name": "experimental",
24541            "description": null,
24542            "type": {
24543              "kind": "SCALAR",
24544              "name": "JSONObject",
24545              "ofType": null
24546            },
24547            "defaultValue": null,
24548            "isDeprecated": false,
24549            "deprecationReason": null
24550          },
24551          {
24552            "name": "mode",
24553            "description": null,
24554            "type": {
24555              "kind": "ENUM",
24556              "name": "BuildMode",
24557              "ofType": null
24558            },
24559            "defaultValue": null,
24560            "isDeprecated": false,
24561            "deprecationReason": null
24562          },
24563          {
24564            "name": "releaseChannel",
24565            "description": null,
24566            "type": {
24567              "kind": "SCALAR",
24568              "name": "String",
24569              "ofType": null
24570            },
24571            "defaultValue": null,
24572            "isDeprecated": false,
24573            "deprecationReason": null
24574          },
24575          {
24576            "name": "resign",
24577            "description": null,
24578            "type": {
24579              "kind": "INPUT_OBJECT",
24580              "name": "BuildResignInput",
24581              "ofType": null
24582            },
24583            "defaultValue": null,
24584            "isDeprecated": false,
24585            "deprecationReason": null
24586          },
24587          {
24588            "name": "scheme",
24589            "description": null,
24590            "type": {
24591              "kind": "SCALAR",
24592              "name": "String",
24593              "ofType": null
24594            },
24595            "defaultValue": null,
24596            "isDeprecated": false,
24597            "deprecationReason": null
24598          },
24599          {
24600            "name": "secrets",
24601            "description": null,
24602            "type": {
24603              "kind": "INPUT_OBJECT",
24604              "name": "IosJobSecretsInput",
24605              "ofType": null
24606            },
24607            "defaultValue": null,
24608            "isDeprecated": false,
24609            "deprecationReason": null
24610          },
24611          {
24612            "name": "simulator",
24613            "description": null,
24614            "type": {
24615              "kind": "SCALAR",
24616              "name": "Boolean",
24617              "ofType": null
24618            },
24619            "defaultValue": null,
24620            "isDeprecated": false,
24621            "deprecationReason": null
24622          },
24623          {
24624            "name": "type",
24625            "description": null,
24626            "type": {
24627              "kind": "ENUM",
24628              "name": "BuildWorkflow",
24629              "ofType": null
24630            },
24631            "defaultValue": null,
24632            "isDeprecated": false,
24633            "deprecationReason": null
24634          },
24635          {
24636            "name": "updates",
24637            "description": null,
24638            "type": {
24639              "kind": "INPUT_OBJECT",
24640              "name": "BuildUpdatesInput",
24641              "ofType": null
24642            },
24643            "defaultValue": null,
24644            "isDeprecated": false,
24645            "deprecationReason": null
24646          },
24647          {
24648            "name": "username",
24649            "description": null,
24650            "type": {
24651              "kind": "SCALAR",
24652              "name": "String",
24653              "ofType": null
24654            },
24655            "defaultValue": null,
24656            "isDeprecated": false,
24657            "deprecationReason": null
24658          },
24659          {
24660            "name": "version",
24661            "description": null,
24662            "type": {
24663              "kind": "INPUT_OBJECT",
24664              "name": "IosJobVersionInput",
24665              "ofType": null
24666            },
24667            "defaultValue": null,
24668            "isDeprecated": false,
24669            "deprecationReason": null
24670          }
24671        ],
24672        "interfaces": null,
24673        "enumValues": null,
24674        "possibleTypes": null
24675      },
24676      {
24677        "kind": "INPUT_OBJECT",
24678        "name": "IosJobSecretsInput",
24679        "description": null,
24680        "fields": null,
24681        "inputFields": [
24682          {
24683            "name": "buildCredentials",
24684            "description": null,
24685            "type": {
24686              "kind": "LIST",
24687              "name": null,
24688              "ofType": {
24689                "kind": "INPUT_OBJECT",
24690                "name": "IosJobTargetCredentialsInput",
24691                "ofType": null
24692              }
24693            },
24694            "defaultValue": null,
24695            "isDeprecated": false,
24696            "deprecationReason": null
24697          },
24698          {
24699            "name": "robotAccessToken",
24700            "description": null,
24701            "type": {
24702              "kind": "SCALAR",
24703              "name": "String",
24704              "ofType": null
24705            },
24706            "defaultValue": null,
24707            "isDeprecated": false,
24708            "deprecationReason": null
24709          }
24710        ],
24711        "interfaces": null,
24712        "enumValues": null,
24713        "possibleTypes": null
24714      },
24715      {
24716        "kind": "INPUT_OBJECT",
24717        "name": "IosJobTargetCredentialsInput",
24718        "description": null,
24719        "fields": null,
24720        "inputFields": [
24721          {
24722            "name": "distributionCertificate",
24723            "description": null,
24724            "type": {
24725              "kind": "NON_NULL",
24726              "name": null,
24727              "ofType": {
24728                "kind": "INPUT_OBJECT",
24729                "name": "IosJobDistributionCertificateInput",
24730                "ofType": null
24731              }
24732            },
24733            "defaultValue": null,
24734            "isDeprecated": false,
24735            "deprecationReason": null
24736          },
24737          {
24738            "name": "provisioningProfileBase64",
24739            "description": null,
24740            "type": {
24741              "kind": "NON_NULL",
24742              "name": null,
24743              "ofType": {
24744                "kind": "SCALAR",
24745                "name": "String",
24746                "ofType": null
24747              }
24748            },
24749            "defaultValue": null,
24750            "isDeprecated": false,
24751            "deprecationReason": null
24752          },
24753          {
24754            "name": "targetName",
24755            "description": null,
24756            "type": {
24757              "kind": "NON_NULL",
24758              "name": null,
24759              "ofType": {
24760                "kind": "SCALAR",
24761                "name": "String",
24762                "ofType": null
24763              }
24764            },
24765            "defaultValue": null,
24766            "isDeprecated": false,
24767            "deprecationReason": null
24768          }
24769        ],
24770        "interfaces": null,
24771        "enumValues": null,
24772        "possibleTypes": null
24773      },
24774      {
24775        "kind": "INPUT_OBJECT",
24776        "name": "IosJobVersionInput",
24777        "description": null,
24778        "fields": null,
24779        "inputFields": [
24780          {
24781            "name": "buildNumber",
24782            "description": null,
24783            "type": {
24784              "kind": "NON_NULL",
24785              "name": null,
24786              "ofType": {
24787                "kind": "SCALAR",
24788                "name": "String",
24789                "ofType": null
24790              }
24791            },
24792            "defaultValue": null,
24793            "isDeprecated": false,
24794            "deprecationReason": null
24795          }
24796        ],
24797        "interfaces": null,
24798        "enumValues": null,
24799        "possibleTypes": null
24800      },
24801      {
24802        "kind": "ENUM",
24803        "name": "IosManagedBuildType",
24804        "description": "@deprecated Use developmentClient option instead.",
24805        "fields": null,
24806        "inputFields": null,
24807        "interfaces": null,
24808        "enumValues": [
24809          {
24810            "name": "DEVELOPMENT_CLIENT",
24811            "description": null,
24812            "isDeprecated": false,
24813            "deprecationReason": null
24814          },
24815          {
24816            "name": "RELEASE",
24817            "description": null,
24818            "isDeprecated": false,
24819            "deprecationReason": null
24820          }
24821        ],
24822        "possibleTypes": null
24823      },
24824      {
24825        "kind": "ENUM",
24826        "name": "IosSchemeBuildConfiguration",
24827        "description": null,
24828        "fields": null,
24829        "inputFields": null,
24830        "interfaces": null,
24831        "enumValues": [
24832          {
24833            "name": "DEBUG",
24834            "description": null,
24835            "isDeprecated": false,
24836            "deprecationReason": null
24837          },
24838          {
24839            "name": "RELEASE",
24840            "description": null,
24841            "isDeprecated": false,
24842            "deprecationReason": null
24843          }
24844        ],
24845        "possibleTypes": null
24846      },
24847      {
24848        "kind": "OBJECT",
24849        "name": "IosSubmissionConfig",
24850        "description": null,
24851        "fields": [
24852          {
24853            "name": "appleIdUsername",
24854            "description": null,
24855            "args": [],
24856            "type": {
24857              "kind": "SCALAR",
24858              "name": "String",
24859              "ofType": null
24860            },
24861            "isDeprecated": false,
24862            "deprecationReason": null
24863          },
24864          {
24865            "name": "ascApiKeyId",
24866            "description": null,
24867            "args": [],
24868            "type": {
24869              "kind": "SCALAR",
24870              "name": "String",
24871              "ofType": null
24872            },
24873            "isDeprecated": false,
24874            "deprecationReason": null
24875          },
24876          {
24877            "name": "ascAppIdentifier",
24878            "description": null,
24879            "args": [],
24880            "type": {
24881              "kind": "NON_NULL",
24882              "name": null,
24883              "ofType": {
24884                "kind": "SCALAR",
24885                "name": "String",
24886                "ofType": null
24887              }
24888            },
24889            "isDeprecated": false,
24890            "deprecationReason": null
24891          }
24892        ],
24893        "inputFields": null,
24894        "interfaces": [],
24895        "enumValues": null,
24896        "possibleTypes": null
24897      },
24898      {
24899        "kind": "INPUT_OBJECT",
24900        "name": "IosSubmissionConfigInput",
24901        "description": null,
24902        "fields": null,
24903        "inputFields": [
24904          {
24905            "name": "appleAppSpecificPassword",
24906            "description": null,
24907            "type": {
24908              "kind": "SCALAR",
24909              "name": "String",
24910              "ofType": null
24911            },
24912            "defaultValue": null,
24913            "isDeprecated": false,
24914            "deprecationReason": null
24915          },
24916          {
24917            "name": "appleIdUsername",
24918            "description": null,
24919            "type": {
24920              "kind": "SCALAR",
24921              "name": "String",
24922              "ofType": null
24923            },
24924            "defaultValue": null,
24925            "isDeprecated": false,
24926            "deprecationReason": null
24927          },
24928          {
24929            "name": "archiveUrl",
24930            "description": null,
24931            "type": {
24932              "kind": "SCALAR",
24933              "name": "String",
24934              "ofType": null
24935            },
24936            "defaultValue": null,
24937            "isDeprecated": false,
24938            "deprecationReason": null
24939          },
24940          {
24941            "name": "ascApiKey",
24942            "description": null,
24943            "type": {
24944              "kind": "INPUT_OBJECT",
24945              "name": "AscApiKeyInput",
24946              "ofType": null
24947            },
24948            "defaultValue": null,
24949            "isDeprecated": false,
24950            "deprecationReason": null
24951          },
24952          {
24953            "name": "ascApiKeyId",
24954            "description": null,
24955            "type": {
24956              "kind": "SCALAR",
24957              "name": "String",
24958              "ofType": null
24959            },
24960            "defaultValue": null,
24961            "isDeprecated": false,
24962            "deprecationReason": null
24963          },
24964          {
24965            "name": "ascAppIdentifier",
24966            "description": null,
24967            "type": {
24968              "kind": "NON_NULL",
24969              "name": null,
24970              "ofType": {
24971                "kind": "SCALAR",
24972                "name": "String",
24973                "ofType": null
24974              }
24975            },
24976            "defaultValue": null,
24977            "isDeprecated": false,
24978            "deprecationReason": null
24979          }
24980        ],
24981        "interfaces": null,
24982        "enumValues": null,
24983        "possibleTypes": null
24984      },
24985      {
24986        "kind": "SCALAR",
24987        "name": "JSON",
24988        "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).",
24989        "fields": null,
24990        "inputFields": null,
24991        "interfaces": null,
24992        "enumValues": null,
24993        "possibleTypes": null
24994      },
24995      {
24996        "kind": "SCALAR",
24997        "name": "JSONObject",
24998        "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).",
24999        "fields": null,
25000        "inputFields": null,
25001        "interfaces": null,
25002        "enumValues": null,
25003        "possibleTypes": null
25004      },
25005      {
25006        "kind": "OBJECT",
25007        "name": "KeystoreGenerationUrl",
25008        "description": null,
25009        "fields": [
25010          {
25011            "name": "id",
25012            "description": null,
25013            "args": [],
25014            "type": {
25015              "kind": "NON_NULL",
25016              "name": null,
25017              "ofType": {
25018                "kind": "SCALAR",
25019                "name": "ID",
25020                "ofType": null
25021              }
25022            },
25023            "isDeprecated": false,
25024            "deprecationReason": null
25025          },
25026          {
25027            "name": "url",
25028            "description": null,
25029            "args": [],
25030            "type": {
25031              "kind": "NON_NULL",
25032              "name": null,
25033              "ofType": {
25034                "kind": "SCALAR",
25035                "name": "String",
25036                "ofType": null
25037              }
25038            },
25039            "isDeprecated": false,
25040            "deprecationReason": null
25041          }
25042        ],
25043        "inputFields": null,
25044        "interfaces": [],
25045        "enumValues": null,
25046        "possibleTypes": null
25047      },
25048      {
25049        "kind": "OBJECT",
25050        "name": "KeystoreGenerationUrlMutation",
25051        "description": null,
25052        "fields": [
25053          {
25054            "name": "createKeystoreGenerationUrl",
25055            "description": "Create a Keystore Generation URL",
25056            "args": [],
25057            "type": {
25058              "kind": "NON_NULL",
25059              "name": null,
25060              "ofType": {
25061                "kind": "OBJECT",
25062                "name": "KeystoreGenerationUrl",
25063                "ofType": null
25064              }
25065            },
25066            "isDeprecated": false,
25067            "deprecationReason": null
25068          }
25069        ],
25070        "inputFields": null,
25071        "interfaces": [],
25072        "enumValues": null,
25073        "possibleTypes": null
25074      },
25075      {
25076        "kind": "OBJECT",
25077        "name": "LeaveAccountResult",
25078        "description": null,
25079        "fields": [
25080          {
25081            "name": "success",
25082            "description": null,
25083            "args": [],
25084            "type": {
25085              "kind": "NON_NULL",
25086              "name": null,
25087              "ofType": {
25088                "kind": "SCALAR",
25089                "name": "Boolean",
25090                "ofType": null
25091              }
25092            },
25093            "isDeprecated": false,
25094            "deprecationReason": null
25095          }
25096        ],
25097        "inputFields": null,
25098        "interfaces": [],
25099        "enumValues": null,
25100        "possibleTypes": null
25101      },
25102      {
25103        "kind": "OBJECT",
25104        "name": "LineChartData",
25105        "description": null,
25106        "fields": [
25107          {
25108            "name": "datasets",
25109            "description": null,
25110            "args": [],
25111            "type": {
25112              "kind": "NON_NULL",
25113              "name": null,
25114              "ofType": {
25115                "kind": "LIST",
25116                "name": null,
25117                "ofType": {
25118                  "kind": "NON_NULL",
25119                  "name": null,
25120                  "ofType": {
25121                    "kind": "OBJECT",
25122                    "name": "LineDataset",
25123                    "ofType": null
25124                  }
25125                }
25126              }
25127            },
25128            "isDeprecated": false,
25129            "deprecationReason": null
25130          },
25131          {
25132            "name": "labels",
25133            "description": null,
25134            "args": [],
25135            "type": {
25136              "kind": "NON_NULL",
25137              "name": null,
25138              "ofType": {
25139                "kind": "LIST",
25140                "name": null,
25141                "ofType": {
25142                  "kind": "NON_NULL",
25143                  "name": null,
25144                  "ofType": {
25145                    "kind": "SCALAR",
25146                    "name": "String",
25147                    "ofType": null
25148                  }
25149                }
25150              }
25151            },
25152            "isDeprecated": false,
25153            "deprecationReason": null
25154          }
25155        ],
25156        "inputFields": null,
25157        "interfaces": [],
25158        "enumValues": null,
25159        "possibleTypes": null
25160      },
25161      {
25162        "kind": "OBJECT",
25163        "name": "LineDataset",
25164        "description": null,
25165        "fields": [
25166          {
25167            "name": "data",
25168            "description": null,
25169            "args": [],
25170            "type": {
25171              "kind": "NON_NULL",
25172              "name": null,
25173              "ofType": {
25174                "kind": "LIST",
25175                "name": null,
25176                "ofType": {
25177                  "kind": "SCALAR",
25178                  "name": "Int",
25179                  "ofType": null
25180                }
25181              }
25182            },
25183            "isDeprecated": false,
25184            "deprecationReason": null
25185          },
25186          {
25187            "name": "id",
25188            "description": null,
25189            "args": [],
25190            "type": {
25191              "kind": "NON_NULL",
25192              "name": null,
25193              "ofType": {
25194                "kind": "SCALAR",
25195                "name": "ID",
25196                "ofType": null
25197              }
25198            },
25199            "isDeprecated": false,
25200            "deprecationReason": null
25201          },
25202          {
25203            "name": "label",
25204            "description": null,
25205            "args": [],
25206            "type": {
25207              "kind": "NON_NULL",
25208              "name": null,
25209              "ofType": {
25210                "kind": "SCALAR",
25211                "name": "String",
25212                "ofType": null
25213              }
25214            },
25215            "isDeprecated": false,
25216            "deprecationReason": null
25217          }
25218        ],
25219        "inputFields": null,
25220        "interfaces": [],
25221        "enumValues": null,
25222        "possibleTypes": null
25223      },
25224      {
25225        "kind": "ENUM",
25226        "name": "MailchimpAudience",
25227        "description": null,
25228        "fields": null,
25229        "inputFields": null,
25230        "interfaces": null,
25231        "enumValues": [
25232          {
25233            "name": "EXPO_DEVELOPERS",
25234            "description": null,
25235            "isDeprecated": false,
25236            "deprecationReason": null
25237          }
25238        ],
25239        "possibleTypes": null
25240      },
25241      {
25242        "kind": "ENUM",
25243        "name": "MailchimpTag",
25244        "description": null,
25245        "fields": null,
25246        "inputFields": null,
25247        "interfaces": null,
25248        "enumValues": [
25249          {
25250            "name": "DEV_CLIENT_USERS",
25251            "description": null,
25252            "isDeprecated": false,
25253            "deprecationReason": null
25254          },
25255          {
25256            "name": "EAS_MASTER_LIST",
25257            "description": null,
25258            "isDeprecated": false,
25259            "deprecationReason": null
25260          }
25261        ],
25262        "possibleTypes": null
25263      },
25264      {
25265        "kind": "OBJECT",
25266        "name": "MailchimpTagPayload",
25267        "description": null,
25268        "fields": [
25269          {
25270            "name": "id",
25271            "description": null,
25272            "args": [],
25273            "type": {
25274              "kind": "SCALAR",
25275              "name": "Int",
25276              "ofType": null
25277            },
25278            "isDeprecated": false,
25279            "deprecationReason": null
25280          },
25281          {
25282            "name": "name",
25283            "description": null,
25284            "args": [],
25285            "type": {
25286              "kind": "SCALAR",
25287              "name": "String",
25288              "ofType": null
25289            },
25290            "isDeprecated": false,
25291            "deprecationReason": null
25292          }
25293        ],
25294        "inputFields": null,
25295        "interfaces": [],
25296        "enumValues": null,
25297        "possibleTypes": null
25298      },
25299      {
25300        "kind": "OBJECT",
25301        "name": "MeMutation",
25302        "description": null,
25303        "fields": [
25304          {
25305            "name": "addSecondFactorDevice",
25306            "description": "Add an additional second factor device",
25307            "args": [
25308              {
25309                "name": "deviceConfiguration",
25310                "description": null,
25311                "type": {
25312                  "kind": "NON_NULL",
25313                  "name": null,
25314                  "ofType": {
25315                    "kind": "INPUT_OBJECT",
25316                    "name": "SecondFactorDeviceConfiguration",
25317                    "ofType": null
25318                  }
25319                },
25320                "defaultValue": null,
25321                "isDeprecated": false,
25322                "deprecationReason": null
25323              },
25324              {
25325                "name": "otp",
25326                "description": null,
25327                "type": {
25328                  "kind": "NON_NULL",
25329                  "name": null,
25330                  "ofType": {
25331                    "kind": "SCALAR",
25332                    "name": "String",
25333                    "ofType": null
25334                  }
25335                },
25336                "defaultValue": null,
25337                "isDeprecated": false,
25338                "deprecationReason": null
25339              }
25340            ],
25341            "type": {
25342              "kind": "NON_NULL",
25343              "name": null,
25344              "ofType": {
25345                "kind": "OBJECT",
25346                "name": "SecondFactorDeviceConfigurationResult",
25347                "ofType": null
25348              }
25349            },
25350            "isDeprecated": false,
25351            "deprecationReason": null
25352          },
25353          {
25354            "name": "certifySecondFactorDevice",
25355            "description": "Certify an initiated second factor authentication method for the current user",
25356            "args": [
25357              {
25358                "name": "otp",
25359                "description": null,
25360                "type": {
25361                  "kind": "NON_NULL",
25362                  "name": null,
25363                  "ofType": {
25364                    "kind": "SCALAR",
25365                    "name": "String",
25366                    "ofType": null
25367                  }
25368                },
25369                "defaultValue": null,
25370                "isDeprecated": false,
25371                "deprecationReason": null
25372              }
25373            ],
25374            "type": {
25375              "kind": "NON_NULL",
25376              "name": null,
25377              "ofType": {
25378                "kind": "OBJECT",
25379                "name": "SecondFactorBooleanResult",
25380                "ofType": null
25381              }
25382            },
25383            "isDeprecated": false,
25384            "deprecationReason": null
25385          },
25386          {
25387            "name": "createAccount",
25388            "description": "Create a new Account and grant this User the owner Role",
25389            "args": [
25390              {
25391                "name": "accountData",
25392                "description": null,
25393                "type": {
25394                  "kind": "NON_NULL",
25395                  "name": null,
25396                  "ofType": {
25397                    "kind": "INPUT_OBJECT",
25398                    "name": "AccountDataInput",
25399                    "ofType": null
25400                  }
25401                },
25402                "defaultValue": null,
25403                "isDeprecated": false,
25404                "deprecationReason": null
25405              }
25406            ],
25407            "type": {
25408              "kind": "NON_NULL",
25409              "name": null,
25410              "ofType": {
25411                "kind": "OBJECT",
25412                "name": "Account",
25413                "ofType": null
25414              }
25415            },
25416            "isDeprecated": false,
25417            "deprecationReason": null
25418          },
25419          {
25420            "name": "deleteAccount",
25421            "description": "Delete an Account created via createAccount",
25422            "args": [
25423              {
25424                "name": "accountId",
25425                "description": null,
25426                "type": {
25427                  "kind": "NON_NULL",
25428                  "name": null,
25429                  "ofType": {
25430                    "kind": "SCALAR",
25431                    "name": "ID",
25432                    "ofType": null
25433                  }
25434                },
25435                "defaultValue": null,
25436                "isDeprecated": false,
25437                "deprecationReason": null
25438              }
25439            ],
25440            "type": {
25441              "kind": "NON_NULL",
25442              "name": null,
25443              "ofType": {
25444                "kind": "OBJECT",
25445                "name": "DeleteAccountResult",
25446                "ofType": null
25447              }
25448            },
25449            "isDeprecated": false,
25450            "deprecationReason": null
25451          },
25452          {
25453            "name": "deleteSecondFactorDevice",
25454            "description": "Delete a second factor device",
25455            "args": [
25456              {
25457                "name": "otp",
25458                "description": null,
25459                "type": {
25460                  "kind": "NON_NULL",
25461                  "name": null,
25462                  "ofType": {
25463                    "kind": "SCALAR",
25464                    "name": "String",
25465                    "ofType": null
25466                  }
25467                },
25468                "defaultValue": null,
25469                "isDeprecated": false,
25470                "deprecationReason": null
25471              },
25472              {
25473                "name": "userSecondFactorDeviceId",
25474                "description": null,
25475                "type": {
25476                  "kind": "NON_NULL",
25477                  "name": null,
25478                  "ofType": {
25479                    "kind": "SCALAR",
25480                    "name": "ID",
25481                    "ofType": null
25482                  }
25483                },
25484                "defaultValue": null,
25485                "isDeprecated": false,
25486                "deprecationReason": null
25487              }
25488            ],
25489            "type": {
25490              "kind": "NON_NULL",
25491              "name": null,
25492              "ofType": {
25493                "kind": "OBJECT",
25494                "name": "SecondFactorBooleanResult",
25495                "ofType": null
25496              }
25497            },
25498            "isDeprecated": false,
25499            "deprecationReason": null
25500          },
25501          {
25502            "name": "deleteSnack",
25503            "description": "Delete a Snack that the current user owns",
25504            "args": [
25505              {
25506                "name": "snackId",
25507                "description": null,
25508                "type": {
25509                  "kind": "NON_NULL",
25510                  "name": null,
25511                  "ofType": {
25512                    "kind": "SCALAR",
25513                    "name": "ID",
25514                    "ofType": null
25515                  }
25516                },
25517                "defaultValue": null,
25518                "isDeprecated": false,
25519                "deprecationReason": null
25520              }
25521            ],
25522            "type": {
25523              "kind": "NON_NULL",
25524              "name": null,
25525              "ofType": {
25526                "kind": "OBJECT",
25527                "name": "Snack",
25528                "ofType": null
25529              }
25530            },
25531            "isDeprecated": false,
25532            "deprecationReason": null
25533          },
25534          {
25535            "name": "disableSecondFactorAuthentication",
25536            "description": "Disable all second factor authentication for the current user",
25537            "args": [
25538              {
25539                "name": "otp",
25540                "description": null,
25541                "type": {
25542                  "kind": "NON_NULL",
25543                  "name": null,
25544                  "ofType": {
25545                    "kind": "SCALAR",
25546                    "name": "String",
25547                    "ofType": null
25548                  }
25549                },
25550                "defaultValue": null,
25551                "isDeprecated": false,
25552                "deprecationReason": null
25553              }
25554            ],
25555            "type": {
25556              "kind": "NON_NULL",
25557              "name": null,
25558              "ofType": {
25559                "kind": "OBJECT",
25560                "name": "SecondFactorBooleanResult",
25561                "ofType": null
25562              }
25563            },
25564            "isDeprecated": false,
25565            "deprecationReason": null
25566          },
25567          {
25568            "name": "initiateSecondFactorAuthentication",
25569            "description": "Initiate setup of two-factor authentication for the current user",
25570            "args": [
25571              {
25572                "name": "deviceConfigurations",
25573                "description": null,
25574                "type": {
25575                  "kind": "NON_NULL",
25576                  "name": null,
25577                  "ofType": {
25578                    "kind": "LIST",
25579                    "name": null,
25580                    "ofType": {
25581                      "kind": "NON_NULL",
25582                      "name": null,
25583                      "ofType": {
25584                        "kind": "INPUT_OBJECT",
25585                        "name": "SecondFactorDeviceConfiguration",
25586                        "ofType": null
25587                      }
25588                    }
25589                  }
25590                },
25591                "defaultValue": null,
25592                "isDeprecated": false,
25593                "deprecationReason": null
25594              },
25595              {
25596                "name": "recaptchaResponseToken",
25597                "description": null,
25598                "type": {
25599                  "kind": "SCALAR",
25600                  "name": "String",
25601                  "ofType": null
25602                },
25603                "defaultValue": null,
25604                "isDeprecated": false,
25605                "deprecationReason": null
25606              }
25607            ],
25608            "type": {
25609              "kind": "NON_NULL",
25610              "name": null,
25611              "ofType": {
25612                "kind": "OBJECT",
25613                "name": "SecondFactorInitiationResult",
25614                "ofType": null
25615              }
25616            },
25617            "isDeprecated": false,
25618            "deprecationReason": null
25619          },
25620          {
25621            "name": "leaveAccount",
25622            "description": "Leave an Account (revoke own permissions on Account)",
25623            "args": [
25624              {
25625                "name": "accountId",
25626                "description": null,
25627                "type": {
25628                  "kind": "NON_NULL",
25629                  "name": null,
25630                  "ofType": {
25631                    "kind": "SCALAR",
25632                    "name": "ID",
25633                    "ofType": null
25634                  }
25635                },
25636                "defaultValue": null,
25637                "isDeprecated": false,
25638                "deprecationReason": null
25639              }
25640            ],
25641            "type": {
25642              "kind": "NON_NULL",
25643              "name": null,
25644              "ofType": {
25645                "kind": "OBJECT",
25646                "name": "LeaveAccountResult",
25647                "ofType": null
25648              }
25649            },
25650            "isDeprecated": false,
25651            "deprecationReason": null
25652          },
25653          {
25654            "name": "purgeUnfinishedSecondFactorAuthentication",
25655            "description": "Purge unfinished two-factor authentication setup for the current user if not fully-set-up",
25656            "args": [],
25657            "type": {
25658              "kind": "NON_NULL",
25659              "name": null,
25660              "ofType": {
25661                "kind": "OBJECT",
25662                "name": "SecondFactorBooleanResult",
25663                "ofType": null
25664              }
25665            },
25666            "isDeprecated": false,
25667            "deprecationReason": null
25668          },
25669          {
25670            "name": "regenerateSecondFactorBackupCodes",
25671            "description": "Regenerate backup codes for the current user",
25672            "args": [
25673              {
25674                "name": "otp",
25675                "description": null,
25676                "type": {
25677                  "kind": "NON_NULL",
25678                  "name": null,
25679                  "ofType": {
25680                    "kind": "SCALAR",
25681                    "name": "String",
25682                    "ofType": null
25683                  }
25684                },
25685                "defaultValue": null,
25686                "isDeprecated": false,
25687                "deprecationReason": null
25688              }
25689            ],
25690            "type": {
25691              "kind": "NON_NULL",
25692              "name": null,
25693              "ofType": {
25694                "kind": "OBJECT",
25695                "name": "SecondFactorRegenerateBackupCodesResult",
25696                "ofType": null
25697              }
25698            },
25699            "isDeprecated": false,
25700            "deprecationReason": null
25701          },
25702          {
25703            "name": "sendSMSOTPToSecondFactorDevice",
25704            "description": "Send SMS OTP to a second factor device for use during device setup or during change confirmation",
25705            "args": [
25706              {
25707                "name": "userSecondFactorDeviceId",
25708                "description": null,
25709                "type": {
25710                  "kind": "NON_NULL",
25711                  "name": null,
25712                  "ofType": {
25713                    "kind": "SCALAR",
25714                    "name": "ID",
25715                    "ofType": null
25716                  }
25717                },
25718                "defaultValue": null,
25719                "isDeprecated": false,
25720                "deprecationReason": null
25721              }
25722            ],
25723            "type": {
25724              "kind": "NON_NULL",
25725              "name": null,
25726              "ofType": {
25727                "kind": "OBJECT",
25728                "name": "SecondFactorBooleanResult",
25729                "ofType": null
25730              }
25731            },
25732            "isDeprecated": false,
25733            "deprecationReason": null
25734          },
25735          {
25736            "name": "setPrimarySecondFactorDevice",
25737            "description": "Set the user's primary second factor device",
25738            "args": [
25739              {
25740                "name": "userSecondFactorDeviceId",
25741                "description": null,
25742                "type": {
25743                  "kind": "NON_NULL",
25744                  "name": null,
25745                  "ofType": {
25746                    "kind": "SCALAR",
25747                    "name": "ID",
25748                    "ofType": null
25749                  }
25750                },
25751                "defaultValue": null,
25752                "isDeprecated": false,
25753                "deprecationReason": null
25754              }
25755            ],
25756            "type": {
25757              "kind": "NON_NULL",
25758              "name": null,
25759              "ofType": {
25760                "kind": "OBJECT",
25761                "name": "SecondFactorBooleanResult",
25762                "ofType": null
25763              }
25764            },
25765            "isDeprecated": false,
25766            "deprecationReason": null
25767          },
25768          {
25769            "name": "transferApp",
25770            "description": "Transfer project to a different Account",
25771            "args": [
25772              {
25773                "name": "appId",
25774                "description": null,
25775                "type": {
25776                  "kind": "NON_NULL",
25777                  "name": null,
25778                  "ofType": {
25779                    "kind": "SCALAR",
25780                    "name": "ID",
25781                    "ofType": null
25782                  }
25783                },
25784                "defaultValue": null,
25785                "isDeprecated": false,
25786                "deprecationReason": null
25787              },
25788              {
25789                "name": "destinationAccountId",
25790                "description": null,
25791                "type": {
25792                  "kind": "NON_NULL",
25793                  "name": null,
25794                  "ofType": {
25795                    "kind": "SCALAR",
25796                    "name": "ID",
25797                    "ofType": null
25798                  }
25799                },
25800                "defaultValue": null,
25801                "isDeprecated": false,
25802                "deprecationReason": null
25803              }
25804            ],
25805            "type": {
25806              "kind": "NON_NULL",
25807              "name": null,
25808              "ofType": {
25809                "kind": "OBJECT",
25810                "name": "App",
25811                "ofType": null
25812              }
25813            },
25814            "isDeprecated": false,
25815            "deprecationReason": null
25816          },
25817          {
25818            "name": "unpublishApp",
25819            "description": "Unpublish an App that the current user owns",
25820            "args": [
25821              {
25822                "name": "appId",
25823                "description": null,
25824                "type": {
25825                  "kind": "NON_NULL",
25826                  "name": null,
25827                  "ofType": {
25828                    "kind": "SCALAR",
25829                    "name": "ID",
25830                    "ofType": null
25831                  }
25832                },
25833                "defaultValue": null,
25834                "isDeprecated": false,
25835                "deprecationReason": null
25836              }
25837            ],
25838            "type": {
25839              "kind": "NON_NULL",
25840              "name": null,
25841              "ofType": {
25842                "kind": "OBJECT",
25843                "name": "App",
25844                "ofType": null
25845              }
25846            },
25847            "isDeprecated": false,
25848            "deprecationReason": null
25849          },
25850          {
25851            "name": "updateApp",
25852            "description": "Update an App that the current user owns",
25853            "args": [
25854              {
25855                "name": "appData",
25856                "description": null,
25857                "type": {
25858                  "kind": "NON_NULL",
25859                  "name": null,
25860                  "ofType": {
25861                    "kind": "INPUT_OBJECT",
25862                    "name": "AppDataInput",
25863                    "ofType": null
25864                  }
25865                },
25866                "defaultValue": null,
25867                "isDeprecated": false,
25868                "deprecationReason": null
25869              }
25870            ],
25871            "type": {
25872              "kind": "NON_NULL",
25873              "name": null,
25874              "ofType": {
25875                "kind": "OBJECT",
25876                "name": "App",
25877                "ofType": null
25878              }
25879            },
25880            "isDeprecated": false,
25881            "deprecationReason": null
25882          },
25883          {
25884            "name": "updateProfile",
25885            "description": "Update the current regular user's data",
25886            "args": [
25887              {
25888                "name": "userData",
25889                "description": null,
25890                "type": {
25891                  "kind": "NON_NULL",
25892                  "name": null,
25893                  "ofType": {
25894                    "kind": "INPUT_OBJECT",
25895                    "name": "UserDataInput",
25896                    "ofType": null
25897                  }
25898                },
25899                "defaultValue": null,
25900                "isDeprecated": false,
25901                "deprecationReason": null
25902              }
25903            ],
25904            "type": {
25905              "kind": "NON_NULL",
25906              "name": null,
25907              "ofType": {
25908                "kind": "OBJECT",
25909                "name": "User",
25910                "ofType": null
25911              }
25912            },
25913            "isDeprecated": false,
25914            "deprecationReason": null
25915          },
25916          {
25917            "name": "updateSSOProfile",
25918            "description": "Update the current SSO user's data",
25919            "args": [
25920              {
25921                "name": "userData",
25922                "description": null,
25923                "type": {
25924                  "kind": "NON_NULL",
25925                  "name": null,
25926                  "ofType": {
25927                    "kind": "INPUT_OBJECT",
25928                    "name": "SSOUserDataInput",
25929                    "ofType": null
25930                  }
25931                },
25932                "defaultValue": null,
25933                "isDeprecated": false,
25934                "deprecationReason": null
25935              }
25936            ],
25937            "type": {
25938              "kind": "NON_NULL",
25939              "name": null,
25940              "ofType": {
25941                "kind": "OBJECT",
25942                "name": "SSOUser",
25943                "ofType": null
25944              }
25945            },
25946            "isDeprecated": false,
25947            "deprecationReason": null
25948          }
25949        ],
25950        "inputFields": null,
25951        "interfaces": [],
25952        "enumValues": null,
25953        "possibleTypes": null
25954      },
25955      {
25956        "kind": "OBJECT",
25957        "name": "MeteredBillingStatus",
25958        "description": null,
25959        "fields": [
25960          {
25961            "name": "EAS_BUILD",
25962            "description": null,
25963            "args": [],
25964            "type": {
25965              "kind": "NON_NULL",
25966              "name": null,
25967              "ofType": {
25968                "kind": "SCALAR",
25969                "name": "Boolean",
25970                "ofType": null
25971              }
25972            },
25973            "isDeprecated": false,
25974            "deprecationReason": null
25975          },
25976          {
25977            "name": "EAS_UPDATE",
25978            "description": null,
25979            "args": [],
25980            "type": {
25981              "kind": "NON_NULL",
25982              "name": null,
25983              "ofType": {
25984                "kind": "SCALAR",
25985                "name": "Boolean",
25986                "ofType": null
25987              }
25988            },
25989            "isDeprecated": false,
25990            "deprecationReason": null
25991          }
25992        ],
25993        "inputFields": null,
25994        "interfaces": [],
25995        "enumValues": null,
25996        "possibleTypes": null
25997      },
25998      {
25999        "kind": "ENUM",
26000        "name": "NotificationEvent",
26001        "description": null,
26002        "fields": null,
26003        "inputFields": null,
26004        "interfaces": null,
26005        "enumValues": [
26006          {
26007            "name": "BUILD_COMPLETE",
26008            "description": null,
26009            "isDeprecated": false,
26010            "deprecationReason": null
26011          },
26012          {
26013            "name": "BUILD_PLAN_CREDIT_THRESHOLD_EXCEEDED",
26014            "description": null,
26015            "isDeprecated": false,
26016            "deprecationReason": null
26017          },
26018          {
26019            "name": "SUBMISSION_COMPLETE",
26020            "description": null,
26021            "isDeprecated": false,
26022            "deprecationReason": null
26023          }
26024        ],
26025        "possibleTypes": null
26026      },
26027      {
26028        "kind": "OBJECT",
26029        "name": "NotificationSubscription",
26030        "description": null,
26031        "fields": [
26032          {
26033            "name": "account",
26034            "description": null,
26035            "args": [],
26036            "type": {
26037              "kind": "OBJECT",
26038              "name": "Account",
26039              "ofType": null
26040            },
26041            "isDeprecated": false,
26042            "deprecationReason": null
26043          },
26044          {
26045            "name": "actor",
26046            "description": null,
26047            "args": [],
26048            "type": {
26049              "kind": "INTERFACE",
26050              "name": "Actor",
26051              "ofType": null
26052            },
26053            "isDeprecated": false,
26054            "deprecationReason": null
26055          },
26056          {
26057            "name": "app",
26058            "description": null,
26059            "args": [],
26060            "type": {
26061              "kind": "OBJECT",
26062              "name": "App",
26063              "ofType": null
26064            },
26065            "isDeprecated": false,
26066            "deprecationReason": null
26067          },
26068          {
26069            "name": "createdAt",
26070            "description": null,
26071            "args": [],
26072            "type": {
26073              "kind": "NON_NULL",
26074              "name": null,
26075              "ofType": {
26076                "kind": "SCALAR",
26077                "name": "DateTime",
26078                "ofType": null
26079              }
26080            },
26081            "isDeprecated": false,
26082            "deprecationReason": null
26083          },
26084          {
26085            "name": "event",
26086            "description": null,
26087            "args": [],
26088            "type": {
26089              "kind": "NON_NULL",
26090              "name": null,
26091              "ofType": {
26092                "kind": "ENUM",
26093                "name": "NotificationEvent",
26094                "ofType": null
26095              }
26096            },
26097            "isDeprecated": false,
26098            "deprecationReason": null
26099          },
26100          {
26101            "name": "id",
26102            "description": null,
26103            "args": [],
26104            "type": {
26105              "kind": "NON_NULL",
26106              "name": null,
26107              "ofType": {
26108                "kind": "SCALAR",
26109                "name": "ID",
26110                "ofType": null
26111              }
26112            },
26113            "isDeprecated": false,
26114            "deprecationReason": null
26115          },
26116          {
26117            "name": "type",
26118            "description": null,
26119            "args": [],
26120            "type": {
26121              "kind": "NON_NULL",
26122              "name": null,
26123              "ofType": {
26124                "kind": "ENUM",
26125                "name": "NotificationType",
26126                "ofType": null
26127              }
26128            },
26129            "isDeprecated": false,
26130            "deprecationReason": null
26131          }
26132        ],
26133        "inputFields": null,
26134        "interfaces": [],
26135        "enumValues": null,
26136        "possibleTypes": null
26137      },
26138      {
26139        "kind": "INPUT_OBJECT",
26140        "name": "NotificationSubscriptionFilter",
26141        "description": null,
26142        "fields": null,
26143        "inputFields": [
26144          {
26145            "name": "accountId",
26146            "description": null,
26147            "type": {
26148              "kind": "SCALAR",
26149              "name": "ID",
26150              "ofType": null
26151            },
26152            "defaultValue": null,
26153            "isDeprecated": false,
26154            "deprecationReason": null
26155          },
26156          {
26157            "name": "appId",
26158            "description": null,
26159            "type": {
26160              "kind": "SCALAR",
26161              "name": "ID",
26162              "ofType": null
26163            },
26164            "defaultValue": null,
26165            "isDeprecated": false,
26166            "deprecationReason": null
26167          },
26168          {
26169            "name": "event",
26170            "description": null,
26171            "type": {
26172              "kind": "ENUM",
26173              "name": "NotificationEvent",
26174              "ofType": null
26175            },
26176            "defaultValue": null,
26177            "isDeprecated": false,
26178            "deprecationReason": null
26179          },
26180          {
26181            "name": "type",
26182            "description": null,
26183            "type": {
26184              "kind": "ENUM",
26185              "name": "NotificationType",
26186              "ofType": null
26187            },
26188            "defaultValue": null,
26189            "isDeprecated": false,
26190            "deprecationReason": null
26191          }
26192        ],
26193        "interfaces": null,
26194        "enumValues": null,
26195        "possibleTypes": null
26196      },
26197      {
26198        "kind": "OBJECT",
26199        "name": "NotificationSubscriptionMutation",
26200        "description": null,
26201        "fields": [
26202          {
26203            "name": "subscribeToEventForAccount",
26204            "description": null,
26205            "args": [
26206              {
26207                "name": "input",
26208                "description": null,
26209                "type": {
26210                  "kind": "NON_NULL",
26211                  "name": null,
26212                  "ofType": {
26213                    "kind": "INPUT_OBJECT",
26214                    "name": "AccountNotificationSubscriptionInput",
26215                    "ofType": null
26216                  }
26217                },
26218                "defaultValue": null,
26219                "isDeprecated": false,
26220                "deprecationReason": null
26221              }
26222            ],
26223            "type": {
26224              "kind": "NON_NULL",
26225              "name": null,
26226              "ofType": {
26227                "kind": "OBJECT",
26228                "name": "SubscribeToNotificationResult",
26229                "ofType": null
26230              }
26231            },
26232            "isDeprecated": false,
26233            "deprecationReason": null
26234          },
26235          {
26236            "name": "subscribeToEventForApp",
26237            "description": null,
26238            "args": [
26239              {
26240                "name": "input",
26241                "description": null,
26242                "type": {
26243                  "kind": "NON_NULL",
26244                  "name": null,
26245                  "ofType": {
26246                    "kind": "INPUT_OBJECT",
26247                    "name": "AppNotificationSubscriptionInput",
26248                    "ofType": null
26249                  }
26250                },
26251                "defaultValue": null,
26252                "isDeprecated": false,
26253                "deprecationReason": null
26254              }
26255            ],
26256            "type": {
26257              "kind": "NON_NULL",
26258              "name": null,
26259              "ofType": {
26260                "kind": "OBJECT",
26261                "name": "SubscribeToNotificationResult",
26262                "ofType": null
26263              }
26264            },
26265            "isDeprecated": false,
26266            "deprecationReason": null
26267          },
26268          {
26269            "name": "unsubscribe",
26270            "description": null,
26271            "args": [
26272              {
26273                "name": "id",
26274                "description": null,
26275                "type": {
26276                  "kind": "NON_NULL",
26277                  "name": null,
26278                  "ofType": {
26279                    "kind": "SCALAR",
26280                    "name": "ID",
26281                    "ofType": null
26282                  }
26283                },
26284                "defaultValue": null,
26285                "isDeprecated": false,
26286                "deprecationReason": null
26287              }
26288            ],
26289            "type": {
26290              "kind": "NON_NULL",
26291              "name": null,
26292              "ofType": {
26293                "kind": "OBJECT",
26294                "name": "UnsubscribeFromNotificationResult",
26295                "ofType": null
26296              }
26297            },
26298            "isDeprecated": false,
26299            "deprecationReason": null
26300          }
26301        ],
26302        "inputFields": null,
26303        "interfaces": [],
26304        "enumValues": null,
26305        "possibleTypes": null
26306      },
26307      {
26308        "kind": "ENUM",
26309        "name": "NotificationType",
26310        "description": null,
26311        "fields": null,
26312        "inputFields": null,
26313        "interfaces": null,
26314        "enumValues": [
26315          {
26316            "name": "EMAIL",
26317            "description": null,
26318            "isDeprecated": false,
26319            "deprecationReason": null
26320          }
26321        ],
26322        "possibleTypes": null
26323      },
26324      {
26325        "kind": "OBJECT",
26326        "name": "Offer",
26327        "description": null,
26328        "fields": [
26329          {
26330            "name": "features",
26331            "description": null,
26332            "args": [],
26333            "type": {
26334              "kind": "LIST",
26335              "name": null,
26336              "ofType": {
26337                "kind": "ENUM",
26338                "name": "Feature",
26339                "ofType": null
26340              }
26341            },
26342            "isDeprecated": false,
26343            "deprecationReason": null
26344          },
26345          {
26346            "name": "id",
26347            "description": null,
26348            "args": [],
26349            "type": {
26350              "kind": "NON_NULL",
26351              "name": null,
26352              "ofType": {
26353                "kind": "SCALAR",
26354                "name": "ID",
26355                "ofType": null
26356              }
26357            },
26358            "isDeprecated": false,
26359            "deprecationReason": null
26360          },
26361          {
26362            "name": "prerequisite",
26363            "description": null,
26364            "args": [],
26365            "type": {
26366              "kind": "OBJECT",
26367              "name": "OfferPrerequisite",
26368              "ofType": null
26369            },
26370            "isDeprecated": false,
26371            "deprecationReason": null
26372          },
26373          {
26374            "name": "price",
26375            "description": null,
26376            "args": [],
26377            "type": {
26378              "kind": "NON_NULL",
26379              "name": null,
26380              "ofType": {
26381                "kind": "SCALAR",
26382                "name": "Int",
26383                "ofType": null
26384              }
26385            },
26386            "isDeprecated": false,
26387            "deprecationReason": null
26388          },
26389          {
26390            "name": "quantity",
26391            "description": null,
26392            "args": [],
26393            "type": {
26394              "kind": "SCALAR",
26395              "name": "Int",
26396              "ofType": null
26397            },
26398            "isDeprecated": false,
26399            "deprecationReason": null
26400          },
26401          {
26402            "name": "stripeId",
26403            "description": null,
26404            "args": [],
26405            "type": {
26406              "kind": "NON_NULL",
26407              "name": null,
26408              "ofType": {
26409                "kind": "SCALAR",
26410                "name": "ID",
26411                "ofType": null
26412              }
26413            },
26414            "isDeprecated": false,
26415            "deprecationReason": null
26416          },
26417          {
26418            "name": "trialLength",
26419            "description": null,
26420            "args": [],
26421            "type": {
26422              "kind": "SCALAR",
26423              "name": "Int",
26424              "ofType": null
26425            },
26426            "isDeprecated": false,
26427            "deprecationReason": null
26428          },
26429          {
26430            "name": "type",
26431            "description": null,
26432            "args": [],
26433            "type": {
26434              "kind": "NON_NULL",
26435              "name": null,
26436              "ofType": {
26437                "kind": "ENUM",
26438                "name": "OfferType",
26439                "ofType": null
26440              }
26441            },
26442            "isDeprecated": false,
26443            "deprecationReason": null
26444          }
26445        ],
26446        "inputFields": null,
26447        "interfaces": [],
26448        "enumValues": null,
26449        "possibleTypes": null
26450      },
26451      {
26452        "kind": "OBJECT",
26453        "name": "OfferPrerequisite",
26454        "description": null,
26455        "fields": [
26456          {
26457            "name": "stripeIds",
26458            "description": null,
26459            "args": [],
26460            "type": {
26461              "kind": "NON_NULL",
26462              "name": null,
26463              "ofType": {
26464                "kind": "LIST",
26465                "name": null,
26466                "ofType": {
26467                  "kind": "NON_NULL",
26468                  "name": null,
26469                  "ofType": {
26470                    "kind": "SCALAR",
26471                    "name": "String",
26472                    "ofType": null
26473                  }
26474                }
26475              }
26476            },
26477            "isDeprecated": false,
26478            "deprecationReason": null
26479          },
26480          {
26481            "name": "type",
26482            "description": null,
26483            "args": [],
26484            "type": {
26485              "kind": "NON_NULL",
26486              "name": null,
26487              "ofType": {
26488                "kind": "SCALAR",
26489                "name": "String",
26490                "ofType": null
26491              }
26492            },
26493            "isDeprecated": false,
26494            "deprecationReason": null
26495          }
26496        ],
26497        "inputFields": null,
26498        "interfaces": [],
26499        "enumValues": null,
26500        "possibleTypes": null
26501      },
26502      {
26503        "kind": "ENUM",
26504        "name": "OfferType",
26505        "description": null,
26506        "fields": null,
26507        "inputFields": null,
26508        "interfaces": null,
26509        "enumValues": [
26510          {
26511            "name": "ADDON",
26512            "description": "Addon, or supplementary subscription",
26513            "isDeprecated": false,
26514            "deprecationReason": null
26515          },
26516          {
26517            "name": "PREPAID",
26518            "description": "Advanced Purchase of Paid Resource",
26519            "isDeprecated": false,
26520            "deprecationReason": null
26521          },
26522          {
26523            "name": "SUBSCRIPTION",
26524            "description": "Term subscription",
26525            "isDeprecated": false,
26526            "deprecationReason": null
26527          }
26528        ],
26529        "possibleTypes": null
26530      },
26531      {
26532        "kind": "ENUM",
26533        "name": "Order",
26534        "description": null,
26535        "fields": null,
26536        "inputFields": null,
26537        "interfaces": null,
26538        "enumValues": [
26539          {
26540            "name": "ASC",
26541            "description": null,
26542            "isDeprecated": false,
26543            "deprecationReason": null
26544          },
26545          {
26546            "name": "DESC",
26547            "description": null,
26548            "isDeprecated": false,
26549            "deprecationReason": null
26550          }
26551        ],
26552        "possibleTypes": null
26553      },
26554      {
26555        "kind": "OBJECT",
26556        "name": "PageInfo",
26557        "description": null,
26558        "fields": [
26559          {
26560            "name": "endCursor",
26561            "description": null,
26562            "args": [],
26563            "type": {
26564              "kind": "SCALAR",
26565              "name": "String",
26566              "ofType": null
26567            },
26568            "isDeprecated": false,
26569            "deprecationReason": null
26570          },
26571          {
26572            "name": "hasNextPage",
26573            "description": null,
26574            "args": [],
26575            "type": {
26576              "kind": "NON_NULL",
26577              "name": null,
26578              "ofType": {
26579                "kind": "SCALAR",
26580                "name": "Boolean",
26581                "ofType": null
26582              }
26583            },
26584            "isDeprecated": false,
26585            "deprecationReason": null
26586          },
26587          {
26588            "name": "hasPreviousPage",
26589            "description": null,
26590            "args": [],
26591            "type": {
26592              "kind": "NON_NULL",
26593              "name": null,
26594              "ofType": {
26595                "kind": "SCALAR",
26596                "name": "Boolean",
26597                "ofType": null
26598              }
26599            },
26600            "isDeprecated": false,
26601            "deprecationReason": null
26602          },
26603          {
26604            "name": "startCursor",
26605            "description": null,
26606            "args": [],
26607            "type": {
26608              "kind": "SCALAR",
26609              "name": "String",
26610              "ofType": null
26611            },
26612            "isDeprecated": false,
26613            "deprecationReason": null
26614          }
26615        ],
26616        "inputFields": null,
26617        "interfaces": [],
26618        "enumValues": null,
26619        "possibleTypes": null
26620      },
26621      {
26622        "kind": "INPUT_OBJECT",
26623        "name": "PartialManifest",
26624        "description": null,
26625        "fields": null,
26626        "inputFields": [
26627          {
26628            "name": "assets",
26629            "description": null,
26630            "type": {
26631              "kind": "NON_NULL",
26632              "name": null,
26633              "ofType": {
26634                "kind": "LIST",
26635                "name": null,
26636                "ofType": {
26637                  "kind": "INPUT_OBJECT",
26638                  "name": "PartialManifestAsset",
26639                  "ofType": null
26640                }
26641              }
26642            },
26643            "defaultValue": null,
26644            "isDeprecated": false,
26645            "deprecationReason": null
26646          },
26647          {
26648            "name": "extra",
26649            "description": null,
26650            "type": {
26651              "kind": "SCALAR",
26652              "name": "JSONObject",
26653              "ofType": null
26654            },
26655            "defaultValue": null,
26656            "isDeprecated": false,
26657            "deprecationReason": null
26658          },
26659          {
26660            "name": "launchAsset",
26661            "description": null,
26662            "type": {
26663              "kind": "NON_NULL",
26664              "name": null,
26665              "ofType": {
26666                "kind": "INPUT_OBJECT",
26667                "name": "PartialManifestAsset",
26668                "ofType": null
26669              }
26670            },
26671            "defaultValue": null,
26672            "isDeprecated": false,
26673            "deprecationReason": null
26674          }
26675        ],
26676        "interfaces": null,
26677        "enumValues": null,
26678        "possibleTypes": null
26679      },
26680      {
26681        "kind": "INPUT_OBJECT",
26682        "name": "PartialManifestAsset",
26683        "description": null,
26684        "fields": null,
26685        "inputFields": [
26686          {
26687            "name": "bundleKey",
26688            "description": null,
26689            "type": {
26690              "kind": "NON_NULL",
26691              "name": null,
26692              "ofType": {
26693                "kind": "SCALAR",
26694                "name": "String",
26695                "ofType": null
26696              }
26697            },
26698            "defaultValue": null,
26699            "isDeprecated": false,
26700            "deprecationReason": null
26701          },
26702          {
26703            "name": "contentType",
26704            "description": null,
26705            "type": {
26706              "kind": "NON_NULL",
26707              "name": null,
26708              "ofType": {
26709                "kind": "SCALAR",
26710                "name": "String",
26711                "ofType": null
26712              }
26713            },
26714            "defaultValue": null,
26715            "isDeprecated": false,
26716            "deprecationReason": null
26717          },
26718          {
26719            "name": "fileExtension",
26720            "description": null,
26721            "type": {
26722              "kind": "SCALAR",
26723              "name": "String",
26724              "ofType": null
26725            },
26726            "defaultValue": null,
26727            "isDeprecated": false,
26728            "deprecationReason": null
26729          },
26730          {
26731            "name": "fileSHA256",
26732            "description": null,
26733            "type": {
26734              "kind": "NON_NULL",
26735              "name": null,
26736              "ofType": {
26737                "kind": "SCALAR",
26738                "name": "String",
26739                "ofType": null
26740              }
26741            },
26742            "defaultValue": null,
26743            "isDeprecated": false,
26744            "deprecationReason": null
26745          },
26746          {
26747            "name": "storageKey",
26748            "description": null,
26749            "type": {
26750              "kind": "NON_NULL",
26751              "name": null,
26752              "ofType": {
26753                "kind": "SCALAR",
26754                "name": "String",
26755                "ofType": null
26756              }
26757            },
26758            "defaultValue": null,
26759            "isDeprecated": false,
26760            "deprecationReason": null
26761          }
26762        ],
26763        "interfaces": null,
26764        "enumValues": null,
26765        "possibleTypes": null
26766      },
26767      {
26768        "kind": "OBJECT",
26769        "name": "PaymentDetails",
26770        "description": null,
26771        "fields": [
26772          {
26773            "name": "address",
26774            "description": null,
26775            "args": [],
26776            "type": {
26777              "kind": "OBJECT",
26778              "name": "Address",
26779              "ofType": null
26780            },
26781            "isDeprecated": false,
26782            "deprecationReason": null
26783          },
26784          {
26785            "name": "card",
26786            "description": null,
26787            "args": [],
26788            "type": {
26789              "kind": "OBJECT",
26790              "name": "Card",
26791              "ofType": null
26792            },
26793            "isDeprecated": false,
26794            "deprecationReason": null
26795          },
26796          {
26797            "name": "id",
26798            "description": null,
26799            "args": [],
26800            "type": {
26801              "kind": "NON_NULL",
26802              "name": null,
26803              "ofType": {
26804                "kind": "SCALAR",
26805                "name": "ID",
26806                "ofType": null
26807              }
26808            },
26809            "isDeprecated": false,
26810            "deprecationReason": null
26811          }
26812        ],
26813        "inputFields": null,
26814        "interfaces": [],
26815        "enumValues": null,
26816        "possibleTypes": null
26817      },
26818      {
26819        "kind": "ENUM",
26820        "name": "Permission",
26821        "description": null,
26822        "fields": null,
26823        "inputFields": null,
26824        "interfaces": null,
26825        "enumValues": [
26826          {
26827            "name": "ADMIN",
26828            "description": null,
26829            "isDeprecated": false,
26830            "deprecationReason": null
26831          },
26832          {
26833            "name": "OWN",
26834            "description": null,
26835            "isDeprecated": false,
26836            "deprecationReason": null
26837          },
26838          {
26839            "name": "PUBLISH",
26840            "description": null,
26841            "isDeprecated": false,
26842            "deprecationReason": null
26843          },
26844          {
26845            "name": "VIEW",
26846            "description": null,
26847            "isDeprecated": false,
26848            "deprecationReason": null
26849          }
26850        ],
26851        "possibleTypes": null
26852      },
26853      {
26854        "kind": "UNION",
26855        "name": "PlanEnablement",
26856        "description": null,
26857        "fields": null,
26858        "inputFields": null,
26859        "interfaces": null,
26860        "enumValues": null,
26861        "possibleTypes": [
26862          {
26863            "kind": "OBJECT",
26864            "name": "Concurrencies",
26865            "ofType": null
26866          },
26867          {
26868            "kind": "OBJECT",
26869            "name": "EASTotalPlanEnablement",
26870            "ofType": null
26871          }
26872        ]
26873      },
26874      {
26875        "kind": "INTERFACE",
26876        "name": "Project",
26877        "description": null,
26878        "fields": [
26879          {
26880            "name": "description",
26881            "description": null,
26882            "args": [],
26883            "type": {
26884              "kind": "NON_NULL",
26885              "name": null,
26886              "ofType": {
26887                "kind": "SCALAR",
26888                "name": "String",
26889                "ofType": null
26890              }
26891            },
26892            "isDeprecated": false,
26893            "deprecationReason": null
26894          },
26895          {
26896            "name": "fullName",
26897            "description": null,
26898            "args": [],
26899            "type": {
26900              "kind": "NON_NULL",
26901              "name": null,
26902              "ofType": {
26903                "kind": "SCALAR",
26904                "name": "String",
26905                "ofType": null
26906              }
26907            },
26908            "isDeprecated": false,
26909            "deprecationReason": null
26910          },
26911          {
26912            "name": "iconUrl",
26913            "description": null,
26914            "args": [],
26915            "type": {
26916              "kind": "SCALAR",
26917              "name": "String",
26918              "ofType": null
26919            },
26920            "isDeprecated": true,
26921            "deprecationReason": "No longer supported"
26922          },
26923          {
26924            "name": "id",
26925            "description": null,
26926            "args": [],
26927            "type": {
26928              "kind": "NON_NULL",
26929              "name": null,
26930              "ofType": {
26931                "kind": "SCALAR",
26932                "name": "ID",
26933                "ofType": null
26934              }
26935            },
26936            "isDeprecated": false,
26937            "deprecationReason": null
26938          },
26939          {
26940            "name": "name",
26941            "description": null,
26942            "args": [],
26943            "type": {
26944              "kind": "NON_NULL",
26945              "name": null,
26946              "ofType": {
26947                "kind": "SCALAR",
26948                "name": "String",
26949                "ofType": null
26950              }
26951            },
26952            "isDeprecated": false,
26953            "deprecationReason": null
26954          },
26955          {
26956            "name": "published",
26957            "description": null,
26958            "args": [],
26959            "type": {
26960              "kind": "NON_NULL",
26961              "name": null,
26962              "ofType": {
26963                "kind": "SCALAR",
26964                "name": "Boolean",
26965                "ofType": null
26966              }
26967            },
26968            "isDeprecated": false,
26969            "deprecationReason": null
26970          },
26971          {
26972            "name": "slug",
26973            "description": null,
26974            "args": [],
26975            "type": {
26976              "kind": "NON_NULL",
26977              "name": null,
26978              "ofType": {
26979                "kind": "SCALAR",
26980                "name": "String",
26981                "ofType": null
26982              }
26983            },
26984            "isDeprecated": false,
26985            "deprecationReason": null
26986          },
26987          {
26988            "name": "updated",
26989            "description": null,
26990            "args": [],
26991            "type": {
26992              "kind": "NON_NULL",
26993              "name": null,
26994              "ofType": {
26995                "kind": "SCALAR",
26996                "name": "DateTime",
26997                "ofType": null
26998              }
26999            },
27000            "isDeprecated": false,
27001            "deprecationReason": null
27002          },
27003          {
27004            "name": "username",
27005            "description": null,
27006            "args": [],
27007            "type": {
27008              "kind": "NON_NULL",
27009              "name": null,
27010              "ofType": {
27011                "kind": "SCALAR",
27012                "name": "String",
27013                "ofType": null
27014              }
27015            },
27016            "isDeprecated": false,
27017            "deprecationReason": null
27018          }
27019        ],
27020        "inputFields": null,
27021        "interfaces": [],
27022        "enumValues": null,
27023        "possibleTypes": [
27024          {
27025            "kind": "OBJECT",
27026            "name": "App",
27027            "ofType": null
27028          },
27029          {
27030            "kind": "OBJECT",
27031            "name": "Snack",
27032            "ofType": null
27033          }
27034        ]
27035      },
27036      {
27037        "kind": "INPUT_OBJECT",
27038        "name": "ProjectArchiveSourceInput",
27039        "description": null,
27040        "fields": null,
27041        "inputFields": [
27042          {
27043            "name": "bucketKey",
27044            "description": null,
27045            "type": {
27046              "kind": "SCALAR",
27047              "name": "String",
27048              "ofType": null
27049            },
27050            "defaultValue": null,
27051            "isDeprecated": false,
27052            "deprecationReason": null
27053          },
27054          {
27055            "name": "gitRef",
27056            "description": null,
27057            "type": {
27058              "kind": "SCALAR",
27059              "name": "String",
27060              "ofType": null
27061            },
27062            "defaultValue": null,
27063            "isDeprecated": false,
27064            "deprecationReason": null
27065          },
27066          {
27067            "name": "repositoryUrl",
27068            "description": null,
27069            "type": {
27070              "kind": "SCALAR",
27071              "name": "String",
27072              "ofType": null
27073            },
27074            "defaultValue": null,
27075            "isDeprecated": false,
27076            "deprecationReason": null
27077          },
27078          {
27079            "name": "type",
27080            "description": null,
27081            "type": {
27082              "kind": "NON_NULL",
27083              "name": null,
27084              "ofType": {
27085                "kind": "ENUM",
27086                "name": "ProjectArchiveSourceType",
27087                "ofType": null
27088              }
27089            },
27090            "defaultValue": null,
27091            "isDeprecated": false,
27092            "deprecationReason": null
27093          },
27094          {
27095            "name": "url",
27096            "description": null,
27097            "type": {
27098              "kind": "SCALAR",
27099              "name": "String",
27100              "ofType": null
27101            },
27102            "defaultValue": null,
27103            "isDeprecated": false,
27104            "deprecationReason": null
27105          }
27106        ],
27107        "interfaces": null,
27108        "enumValues": null,
27109        "possibleTypes": null
27110      },
27111      {
27112        "kind": "ENUM",
27113        "name": "ProjectArchiveSourceType",
27114        "description": null,
27115        "fields": null,
27116        "inputFields": null,
27117        "interfaces": null,
27118        "enumValues": [
27119          {
27120            "name": "GCS",
27121            "description": null,
27122            "isDeprecated": false,
27123            "deprecationReason": null
27124          },
27125          {
27126            "name": "GIT",
27127            "description": null,
27128            "isDeprecated": false,
27129            "deprecationReason": null
27130          },
27131          {
27132            "name": "NONE",
27133            "description": null,
27134            "isDeprecated": false,
27135            "deprecationReason": null
27136          },
27137          {
27138            "name": "S3",
27139            "description": null,
27140            "isDeprecated": false,
27141            "deprecationReason": null
27142          },
27143          {
27144            "name": "URL",
27145            "description": null,
27146            "isDeprecated": false,
27147            "deprecationReason": null
27148          }
27149        ],
27150        "possibleTypes": null
27151      },
27152      {
27153        "kind": "OBJECT",
27154        "name": "ProjectPublicData",
27155        "description": null,
27156        "fields": [
27157          {
27158            "name": "fullName",
27159            "description": null,
27160            "args": [],
27161            "type": {
27162              "kind": "NON_NULL",
27163              "name": null,
27164              "ofType": {
27165                "kind": "SCALAR",
27166                "name": "String",
27167                "ofType": null
27168              }
27169            },
27170            "isDeprecated": false,
27171            "deprecationReason": null
27172          },
27173          {
27174            "name": "id",
27175            "description": null,
27176            "args": [],
27177            "type": {
27178              "kind": "NON_NULL",
27179              "name": null,
27180              "ofType": {
27181                "kind": "SCALAR",
27182                "name": "ID",
27183                "ofType": null
27184              }
27185            },
27186            "isDeprecated": false,
27187            "deprecationReason": null
27188          }
27189        ],
27190        "inputFields": null,
27191        "interfaces": [],
27192        "enumValues": null,
27193        "possibleTypes": null
27194      },
27195      {
27196        "kind": "OBJECT",
27197        "name": "ProjectQuery",
27198        "description": null,
27199        "fields": [
27200          {
27201            "name": "byAccountNameAndSlug",
27202            "description": null,
27203            "args": [
27204              {
27205                "name": "accountName",
27206                "description": null,
27207                "type": {
27208                  "kind": "NON_NULL",
27209                  "name": null,
27210                  "ofType": {
27211                    "kind": "SCALAR",
27212                    "name": "String",
27213                    "ofType": null
27214                  }
27215                },
27216                "defaultValue": null,
27217                "isDeprecated": false,
27218                "deprecationReason": null
27219              },
27220              {
27221                "name": "platform",
27222                "description": null,
27223                "type": {
27224                  "kind": "ENUM",
27225                  "name": "AppPlatform",
27226                  "ofType": null
27227                },
27228                "defaultValue": null,
27229                "isDeprecated": false,
27230                "deprecationReason": null
27231              },
27232              {
27233                "name": "sdkVersions",
27234                "description": null,
27235                "type": {
27236                  "kind": "LIST",
27237                  "name": null,
27238                  "ofType": {
27239                    "kind": "SCALAR",
27240                    "name": "String",
27241                    "ofType": null
27242                  }
27243                },
27244                "defaultValue": null,
27245                "isDeprecated": false,
27246                "deprecationReason": null
27247              },
27248              {
27249                "name": "slug",
27250                "description": null,
27251                "type": {
27252                  "kind": "NON_NULL",
27253                  "name": null,
27254                  "ofType": {
27255                    "kind": "SCALAR",
27256                    "name": "String",
27257                    "ofType": null
27258                  }
27259                },
27260                "defaultValue": null,
27261                "isDeprecated": false,
27262                "deprecationReason": null
27263              }
27264            ],
27265            "type": {
27266              "kind": "NON_NULL",
27267              "name": null,
27268              "ofType": {
27269                "kind": "INTERFACE",
27270                "name": "Project",
27271                "ofType": null
27272              }
27273            },
27274            "isDeprecated": false,
27275            "deprecationReason": null
27276          },
27277          {
27278            "name": "byPaths",
27279            "description": null,
27280            "args": [
27281              {
27282                "name": "paths",
27283                "description": null,
27284                "type": {
27285                  "kind": "LIST",
27286                  "name": null,
27287                  "ofType": {
27288                    "kind": "SCALAR",
27289                    "name": "String",
27290                    "ofType": null
27291                  }
27292                },
27293                "defaultValue": null,
27294                "isDeprecated": false,
27295                "deprecationReason": null
27296              }
27297            ],
27298            "type": {
27299              "kind": "NON_NULL",
27300              "name": null,
27301              "ofType": {
27302                "kind": "LIST",
27303                "name": null,
27304                "ofType": {
27305                  "kind": "INTERFACE",
27306                  "name": "Project",
27307                  "ofType": null
27308                }
27309              }
27310            },
27311            "isDeprecated": true,
27312            "deprecationReason": "No longer supported"
27313          },
27314          {
27315            "name": "byUsernameAndSlug",
27316            "description": null,
27317            "args": [
27318              {
27319                "name": "platform",
27320                "description": null,
27321                "type": {
27322                  "kind": "SCALAR",
27323                  "name": "String",
27324                  "ofType": null
27325                },
27326                "defaultValue": null,
27327                "isDeprecated": false,
27328                "deprecationReason": null
27329              },
27330              {
27331                "name": "sdkVersions",
27332                "description": null,
27333                "type": {
27334                  "kind": "LIST",
27335                  "name": null,
27336                  "ofType": {
27337                    "kind": "SCALAR",
27338                    "name": "String",
27339                    "ofType": null
27340                  }
27341                },
27342                "defaultValue": null,
27343                "isDeprecated": false,
27344                "deprecationReason": null
27345              },
27346              {
27347                "name": "slug",
27348                "description": null,
27349                "type": {
27350                  "kind": "NON_NULL",
27351                  "name": null,
27352                  "ofType": {
27353                    "kind": "SCALAR",
27354                    "name": "String",
27355                    "ofType": null
27356                  }
27357                },
27358                "defaultValue": null,
27359                "isDeprecated": false,
27360                "deprecationReason": null
27361              },
27362              {
27363                "name": "username",
27364                "description": null,
27365                "type": {
27366                  "kind": "NON_NULL",
27367                  "name": null,
27368                  "ofType": {
27369                    "kind": "SCALAR",
27370                    "name": "String",
27371                    "ofType": null
27372                  }
27373                },
27374                "defaultValue": null,
27375                "isDeprecated": false,
27376                "deprecationReason": null
27377              }
27378            ],
27379            "type": {
27380              "kind": "NON_NULL",
27381              "name": null,
27382              "ofType": {
27383                "kind": "INTERFACE",
27384                "name": "Project",
27385                "ofType": null
27386              }
27387            },
27388            "isDeprecated": true,
27389            "deprecationReason": "See byAccountNameAndSlug"
27390          }
27391        ],
27392        "inputFields": null,
27393        "interfaces": [],
27394        "enumValues": null,
27395        "possibleTypes": null
27396      },
27397      {
27398        "kind": "OBJECT",
27399        "name": "PublicArtifacts",
27400        "description": null,
27401        "fields": [
27402          {
27403            "name": "applicationArchiveUrl",
27404            "description": null,
27405            "args": [],
27406            "type": {
27407              "kind": "SCALAR",
27408              "name": "String",
27409              "ofType": null
27410            },
27411            "isDeprecated": false,
27412            "deprecationReason": null
27413          },
27414          {
27415            "name": "buildUrl",
27416            "description": null,
27417            "args": [],
27418            "type": {
27419              "kind": "SCALAR",
27420              "name": "String",
27421              "ofType": null
27422            },
27423            "isDeprecated": false,
27424            "deprecationReason": null
27425          }
27426        ],
27427        "inputFields": null,
27428        "interfaces": [],
27429        "enumValues": null,
27430        "possibleTypes": null
27431      },
27432      {
27433        "kind": "INPUT_OBJECT",
27434        "name": "PublishUpdateGroupInput",
27435        "description": null,
27436        "fields": null,
27437        "inputFields": [
27438          {
27439            "name": "awaitingCodeSigningInfo",
27440            "description": null,
27441            "type": {
27442              "kind": "SCALAR",
27443              "name": "Boolean",
27444              "ofType": null
27445            },
27446            "defaultValue": null,
27447            "isDeprecated": false,
27448            "deprecationReason": null
27449          },
27450          {
27451            "name": "branchId",
27452            "description": null,
27453            "type": {
27454              "kind": "NON_NULL",
27455              "name": null,
27456              "ofType": {
27457                "kind": "SCALAR",
27458                "name": "String",
27459                "ofType": null
27460              }
27461            },
27462            "defaultValue": null,
27463            "isDeprecated": false,
27464            "deprecationReason": null
27465          },
27466          {
27467            "name": "excludedAssets",
27468            "description": null,
27469            "type": {
27470              "kind": "LIST",
27471              "name": null,
27472              "ofType": {
27473                "kind": "NON_NULL",
27474                "name": null,
27475                "ofType": {
27476                  "kind": "INPUT_OBJECT",
27477                  "name": "PartialManifestAsset",
27478                  "ofType": null
27479                }
27480              }
27481            },
27482            "defaultValue": null,
27483            "isDeprecated": false,
27484            "deprecationReason": null
27485          },
27486          {
27487            "name": "gitCommitHash",
27488            "description": null,
27489            "type": {
27490              "kind": "SCALAR",
27491              "name": "String",
27492              "ofType": null
27493            },
27494            "defaultValue": null,
27495            "isDeprecated": false,
27496            "deprecationReason": null
27497          },
27498          {
27499            "name": "isGitWorkingTreeDirty",
27500            "description": null,
27501            "type": {
27502              "kind": "SCALAR",
27503              "name": "Boolean",
27504              "ofType": null
27505            },
27506            "defaultValue": null,
27507            "isDeprecated": false,
27508            "deprecationReason": null
27509          },
27510          {
27511            "name": "message",
27512            "description": null,
27513            "type": {
27514              "kind": "SCALAR",
27515              "name": "String",
27516              "ofType": null
27517            },
27518            "defaultValue": null,
27519            "isDeprecated": false,
27520            "deprecationReason": null
27521          },
27522          {
27523            "name": "rollBackToEmbeddedInfoGroup",
27524            "description": null,
27525            "type": {
27526              "kind": "INPUT_OBJECT",
27527              "name": "UpdateRollBackToEmbeddedGroup",
27528              "ofType": null
27529            },
27530            "defaultValue": null,
27531            "isDeprecated": false,
27532            "deprecationReason": null
27533          },
27534          {
27535            "name": "runtimeVersion",
27536            "description": null,
27537            "type": {
27538              "kind": "NON_NULL",
27539              "name": null,
27540              "ofType": {
27541                "kind": "SCALAR",
27542                "name": "String",
27543                "ofType": null
27544              }
27545            },
27546            "defaultValue": null,
27547            "isDeprecated": false,
27548            "deprecationReason": null
27549          },
27550          {
27551            "name": "updateInfoGroup",
27552            "description": null,
27553            "type": {
27554              "kind": "INPUT_OBJECT",
27555              "name": "UpdateInfoGroup",
27556              "ofType": null
27557            },
27558            "defaultValue": null,
27559            "isDeprecated": false,
27560            "deprecationReason": null
27561          }
27562        ],
27563        "interfaces": null,
27564        "enumValues": null,
27565        "possibleTypes": null
27566      },
27567      {
27568        "kind": "OBJECT",
27569        "name": "RescindUserInvitationResult",
27570        "description": null,
27571        "fields": [
27572          {
27573            "name": "id",
27574            "description": null,
27575            "args": [],
27576            "type": {
27577              "kind": "NON_NULL",
27578              "name": null,
27579              "ofType": {
27580                "kind": "SCALAR",
27581                "name": "ID",
27582                "ofType": null
27583              }
27584            },
27585            "isDeprecated": false,
27586            "deprecationReason": null
27587          }
27588        ],
27589        "inputFields": null,
27590        "interfaces": [],
27591        "enumValues": null,
27592        "possibleTypes": null
27593      },
27594      {
27595        "kind": "OBJECT",
27596        "name": "Robot",
27597        "description": "Represents a robot (not human) actor.",
27598        "fields": [
27599          {
27600            "name": "accessTokens",
27601            "description": "Access Tokens belonging to this actor",
27602            "args": [],
27603            "type": {
27604              "kind": "NON_NULL",
27605              "name": null,
27606              "ofType": {
27607                "kind": "LIST",
27608                "name": null,
27609                "ofType": {
27610                  "kind": "NON_NULL",
27611                  "name": null,
27612                  "ofType": {
27613                    "kind": "OBJECT",
27614                    "name": "AccessToken",
27615                    "ofType": null
27616                  }
27617                }
27618              }
27619            },
27620            "isDeprecated": false,
27621            "deprecationReason": null
27622          },
27623          {
27624            "name": "accounts",
27625            "description": "Associated accounts",
27626            "args": [],
27627            "type": {
27628              "kind": "NON_NULL",
27629              "name": null,
27630              "ofType": {
27631                "kind": "LIST",
27632                "name": null,
27633                "ofType": {
27634                  "kind": "NON_NULL",
27635                  "name": null,
27636                  "ofType": {
27637                    "kind": "OBJECT",
27638                    "name": "Account",
27639                    "ofType": null
27640                  }
27641                }
27642              }
27643            },
27644            "isDeprecated": false,
27645            "deprecationReason": null
27646          },
27647          {
27648            "name": "created",
27649            "description": null,
27650            "args": [],
27651            "type": {
27652              "kind": "NON_NULL",
27653              "name": null,
27654              "ofType": {
27655                "kind": "SCALAR",
27656                "name": "DateTime",
27657                "ofType": null
27658              }
27659            },
27660            "isDeprecated": false,
27661            "deprecationReason": null
27662          },
27663          {
27664            "name": "displayName",
27665            "description": null,
27666            "args": [],
27667            "type": {
27668              "kind": "NON_NULL",
27669              "name": null,
27670              "ofType": {
27671                "kind": "SCALAR",
27672                "name": "String",
27673                "ofType": null
27674              }
27675            },
27676            "isDeprecated": false,
27677            "deprecationReason": null
27678          },
27679          {
27680            "name": "featureGates",
27681            "description": "Server feature gate values for this actor, optionally filtering by desired gates.\nOnly resolves for the viewer.",
27682            "args": [
27683              {
27684                "name": "filter",
27685                "description": null,
27686                "type": {
27687                  "kind": "LIST",
27688                  "name": null,
27689                  "ofType": {
27690                    "kind": "NON_NULL",
27691                    "name": null,
27692                    "ofType": {
27693                      "kind": "SCALAR",
27694                      "name": "String",
27695                      "ofType": null
27696                    }
27697                  }
27698                },
27699                "defaultValue": null,
27700                "isDeprecated": false,
27701                "deprecationReason": null
27702              }
27703            ],
27704            "type": {
27705              "kind": "NON_NULL",
27706              "name": null,
27707              "ofType": {
27708                "kind": "SCALAR",
27709                "name": "JSONObject",
27710                "ofType": null
27711              }
27712            },
27713            "isDeprecated": false,
27714            "deprecationReason": null
27715          },
27716          {
27717            "name": "firstName",
27718            "description": null,
27719            "args": [],
27720            "type": {
27721              "kind": "SCALAR",
27722              "name": "String",
27723              "ofType": null
27724            },
27725            "isDeprecated": false,
27726            "deprecationReason": null
27727          },
27728          {
27729            "name": "id",
27730            "description": null,
27731            "args": [],
27732            "type": {
27733              "kind": "NON_NULL",
27734              "name": null,
27735              "ofType": {
27736                "kind": "SCALAR",
27737                "name": "ID",
27738                "ofType": null
27739              }
27740            },
27741            "isDeprecated": false,
27742            "deprecationReason": null
27743          },
27744          {
27745            "name": "isExpoAdmin",
27746            "description": null,
27747            "args": [],
27748            "type": {
27749              "kind": "NON_NULL",
27750              "name": null,
27751              "ofType": {
27752                "kind": "SCALAR",
27753                "name": "Boolean",
27754                "ofType": null
27755              }
27756            },
27757            "isDeprecated": false,
27758            "deprecationReason": null
27759          }
27760        ],
27761        "inputFields": null,
27762        "interfaces": [
27763          {
27764            "kind": "INTERFACE",
27765            "name": "Actor",
27766            "ofType": null
27767          }
27768        ],
27769        "enumValues": null,
27770        "possibleTypes": null
27771      },
27772      {
27773        "kind": "INPUT_OBJECT",
27774        "name": "RobotDataInput",
27775        "description": null,
27776        "fields": null,
27777        "inputFields": [
27778          {
27779            "name": "name",
27780            "description": null,
27781            "type": {
27782              "kind": "SCALAR",
27783              "name": "String",
27784              "ofType": null
27785            },
27786            "defaultValue": null,
27787            "isDeprecated": false,
27788            "deprecationReason": null
27789          }
27790        ],
27791        "interfaces": null,
27792        "enumValues": null,
27793        "possibleTypes": null
27794      },
27795      {
27796        "kind": "OBJECT",
27797        "name": "RobotMutation",
27798        "description": null,
27799        "fields": [
27800          {
27801            "name": "createRobotForAccount",
27802            "description": "Create a Robot and grant it Permissions on an Account",
27803            "args": [
27804              {
27805                "name": "accountID",
27806                "description": null,
27807                "type": {
27808                  "kind": "NON_NULL",
27809                  "name": null,
27810                  "ofType": {
27811                    "kind": "SCALAR",
27812                    "name": "String",
27813                    "ofType": null
27814                  }
27815                },
27816                "defaultValue": null,
27817                "isDeprecated": false,
27818                "deprecationReason": null
27819              },
27820              {
27821                "name": "permissions",
27822                "description": null,
27823                "type": {
27824                  "kind": "NON_NULL",
27825                  "name": null,
27826                  "ofType": {
27827                    "kind": "LIST",
27828                    "name": null,
27829                    "ofType": {
27830                      "kind": "ENUM",
27831                      "name": "Permission",
27832                      "ofType": null
27833                    }
27834                  }
27835                },
27836                "defaultValue": null,
27837                "isDeprecated": false,
27838                "deprecationReason": null
27839              },
27840              {
27841                "name": "robotData",
27842                "description": null,
27843                "type": {
27844                  "kind": "INPUT_OBJECT",
27845                  "name": "RobotDataInput",
27846                  "ofType": null
27847                },
27848                "defaultValue": null,
27849                "isDeprecated": false,
27850                "deprecationReason": null
27851              }
27852            ],
27853            "type": {
27854              "kind": "NON_NULL",
27855              "name": null,
27856              "ofType": {
27857                "kind": "OBJECT",
27858                "name": "Robot",
27859                "ofType": null
27860              }
27861            },
27862            "isDeprecated": false,
27863            "deprecationReason": null
27864          },
27865          {
27866            "name": "deleteRobot",
27867            "description": "Delete a Robot",
27868            "args": [
27869              {
27870                "name": "id",
27871                "description": null,
27872                "type": {
27873                  "kind": "NON_NULL",
27874                  "name": null,
27875                  "ofType": {
27876                    "kind": "SCALAR",
27877                    "name": "String",
27878                    "ofType": null
27879                  }
27880                },
27881                "defaultValue": null,
27882                "isDeprecated": false,
27883                "deprecationReason": null
27884              }
27885            ],
27886            "type": {
27887              "kind": "NON_NULL",
27888              "name": null,
27889              "ofType": {
27890                "kind": "OBJECT",
27891                "name": "DeleteRobotResult",
27892                "ofType": null
27893              }
27894            },
27895            "isDeprecated": false,
27896            "deprecationReason": null
27897          },
27898          {
27899            "name": "updateRobot",
27900            "description": "Update a Robot",
27901            "args": [
27902              {
27903                "name": "id",
27904                "description": null,
27905                "type": {
27906                  "kind": "NON_NULL",
27907                  "name": null,
27908                  "ofType": {
27909                    "kind": "SCALAR",
27910                    "name": "String",
27911                    "ofType": null
27912                  }
27913                },
27914                "defaultValue": null,
27915                "isDeprecated": false,
27916                "deprecationReason": null
27917              },
27918              {
27919                "name": "robotData",
27920                "description": null,
27921                "type": {
27922                  "kind": "NON_NULL",
27923                  "name": null,
27924                  "ofType": {
27925                    "kind": "INPUT_OBJECT",
27926                    "name": "RobotDataInput",
27927                    "ofType": null
27928                  }
27929                },
27930                "defaultValue": null,
27931                "isDeprecated": false,
27932                "deprecationReason": null
27933              }
27934            ],
27935            "type": {
27936              "kind": "NON_NULL",
27937              "name": null,
27938              "ofType": {
27939                "kind": "OBJECT",
27940                "name": "Robot",
27941                "ofType": null
27942              }
27943            },
27944            "isDeprecated": false,
27945            "deprecationReason": null
27946          }
27947        ],
27948        "inputFields": null,
27949        "interfaces": [],
27950        "enumValues": null,
27951        "possibleTypes": null
27952      },
27953      {
27954        "kind": "ENUM",
27955        "name": "Role",
27956        "description": null,
27957        "fields": null,
27958        "inputFields": null,
27959        "interfaces": null,
27960        "enumValues": [
27961          {
27962            "name": "ADMIN",
27963            "description": null,
27964            "isDeprecated": false,
27965            "deprecationReason": null
27966          },
27967          {
27968            "name": "CUSTOM",
27969            "description": null,
27970            "isDeprecated": false,
27971            "deprecationReason": null
27972          },
27973          {
27974            "name": "DEVELOPER",
27975            "description": null,
27976            "isDeprecated": false,
27977            "deprecationReason": null
27978          },
27979          {
27980            "name": "HAS_ADMIN",
27981            "description": null,
27982            "isDeprecated": false,
27983            "deprecationReason": null
27984          },
27985          {
27986            "name": "NOT_ADMIN",
27987            "description": null,
27988            "isDeprecated": false,
27989            "deprecationReason": null
27990          },
27991          {
27992            "name": "OWNER",
27993            "description": null,
27994            "isDeprecated": false,
27995            "deprecationReason": null
27996          },
27997          {
27998            "name": "VIEW_ONLY",
27999            "description": null,
28000            "isDeprecated": false,
28001            "deprecationReason": null
28002          }
28003        ],
28004        "possibleTypes": null
28005      },
28006      {
28007        "kind": "OBJECT",
28008        "name": "RootMutation",
28009        "description": null,
28010        "fields": [
28011          {
28012            "name": "_doNotUse",
28013            "description": "This is a placeholder field",
28014            "args": [],
28015            "type": {
28016              "kind": "SCALAR",
28017              "name": "String",
28018              "ofType": null
28019            },
28020            "isDeprecated": true,
28021            "deprecationReason": "Not used."
28022          },
28023          {
28024            "name": "accessToken",
28025            "description": "Mutations that create, read, update, and delete AccessTokens for Actors",
28026            "args": [],
28027            "type": {
28028              "kind": "NON_NULL",
28029              "name": null,
28030              "ofType": {
28031                "kind": "OBJECT",
28032                "name": "AccessTokenMutation",
28033                "ofType": null
28034              }
28035            },
28036            "isDeprecated": false,
28037            "deprecationReason": null
28038          },
28039          {
28040            "name": "account",
28041            "description": "Mutations that modify an Account",
28042            "args": [
28043              {
28044                "name": "accountName",
28045                "description": null,
28046                "type": {
28047                  "kind": "NON_NULL",
28048                  "name": null,
28049                  "ofType": {
28050                    "kind": "SCALAR",
28051                    "name": "ID",
28052                    "ofType": null
28053                  }
28054                },
28055                "defaultValue": null,
28056                "isDeprecated": false,
28057                "deprecationReason": null
28058              }
28059            ],
28060            "type": {
28061              "kind": "NON_NULL",
28062              "name": null,
28063              "ofType": {
28064                "kind": "OBJECT",
28065                "name": "AccountMutation",
28066                "ofType": null
28067              }
28068            },
28069            "isDeprecated": false,
28070            "deprecationReason": null
28071          },
28072          {
28073            "name": "accountSSOConfiguration",
28074            "description": "Mutations that create, update, and delete an AccountSSOConfiguration",
28075            "args": [],
28076            "type": {
28077              "kind": "NON_NULL",
28078              "name": null,
28079              "ofType": {
28080                "kind": "OBJECT",
28081                "name": "AccountSSOConfigurationMutation",
28082                "ofType": null
28083              }
28084            },
28085            "isDeprecated": false,
28086            "deprecationReason": null
28087          },
28088          {
28089            "name": "androidAppBuildCredentials",
28090            "description": "Mutations that modify the build credentials for an Android app",
28091            "args": [],
28092            "type": {
28093              "kind": "NON_NULL",
28094              "name": null,
28095              "ofType": {
28096                "kind": "OBJECT",
28097                "name": "AndroidAppBuildCredentialsMutation",
28098                "ofType": null
28099              }
28100            },
28101            "isDeprecated": false,
28102            "deprecationReason": null
28103          },
28104          {
28105            "name": "androidAppCredentials",
28106            "description": "Mutations that modify the credentials for an Android app",
28107            "args": [],
28108            "type": {
28109              "kind": "NON_NULL",
28110              "name": null,
28111              "ofType": {
28112                "kind": "OBJECT",
28113                "name": "AndroidAppCredentialsMutation",
28114                "ofType": null
28115              }
28116            },
28117            "isDeprecated": false,
28118            "deprecationReason": null
28119          },
28120          {
28121            "name": "androidFcm",
28122            "description": "Mutations that modify an FCM credential",
28123            "args": [],
28124            "type": {
28125              "kind": "NON_NULL",
28126              "name": null,
28127              "ofType": {
28128                "kind": "OBJECT",
28129                "name": "AndroidFcmMutation",
28130                "ofType": null
28131              }
28132            },
28133            "isDeprecated": false,
28134            "deprecationReason": null
28135          },
28136          {
28137            "name": "androidKeystore",
28138            "description": "Mutations that modify a Keystore",
28139            "args": [],
28140            "type": {
28141              "kind": "NON_NULL",
28142              "name": null,
28143              "ofType": {
28144                "kind": "OBJECT",
28145                "name": "AndroidKeystoreMutation",
28146                "ofType": null
28147              }
28148            },
28149            "isDeprecated": false,
28150            "deprecationReason": null
28151          },
28152          {
28153            "name": "app",
28154            "description": "Mutations that modify an App",
28155            "args": [
28156              {
28157                "name": "appId",
28158                "description": null,
28159                "type": {
28160                  "kind": "SCALAR",
28161                  "name": "ID",
28162                  "ofType": null
28163                },
28164                "defaultValue": null,
28165                "isDeprecated": false,
28166                "deprecationReason": null
28167              }
28168            ],
28169            "type": {
28170              "kind": "OBJECT",
28171              "name": "AppMutation",
28172              "ofType": null
28173            },
28174            "isDeprecated": false,
28175            "deprecationReason": null
28176          },
28177          {
28178            "name": "appStoreConnectApiKey",
28179            "description": "Mutations that modify an App Store Connect Api Key",
28180            "args": [],
28181            "type": {
28182              "kind": "NON_NULL",
28183              "name": null,
28184              "ofType": {
28185                "kind": "OBJECT",
28186                "name": "AppStoreConnectApiKeyMutation",
28187                "ofType": null
28188              }
28189            },
28190            "isDeprecated": false,
28191            "deprecationReason": null
28192          },
28193          {
28194            "name": "appVersion",
28195            "description": "Mutations that modify an AppVersion",
28196            "args": [],
28197            "type": {
28198              "kind": "NON_NULL",
28199              "name": null,
28200              "ofType": {
28201                "kind": "OBJECT",
28202                "name": "AppVersionMutation",
28203                "ofType": null
28204              }
28205            },
28206            "isDeprecated": false,
28207            "deprecationReason": null
28208          },
28209          {
28210            "name": "appleAppIdentifier",
28211            "description": "Mutations that modify an Identifier for an iOS App",
28212            "args": [],
28213            "type": {
28214              "kind": "NON_NULL",
28215              "name": null,
28216              "ofType": {
28217                "kind": "OBJECT",
28218                "name": "AppleAppIdentifierMutation",
28219                "ofType": null
28220              }
28221            },
28222            "isDeprecated": false,
28223            "deprecationReason": null
28224          },
28225          {
28226            "name": "appleDevice",
28227            "description": "Mutations that modify an Apple Device",
28228            "args": [],
28229            "type": {
28230              "kind": "NON_NULL",
28231              "name": null,
28232              "ofType": {
28233                "kind": "OBJECT",
28234                "name": "AppleDeviceMutation",
28235                "ofType": null
28236              }
28237            },
28238            "isDeprecated": false,
28239            "deprecationReason": null
28240          },
28241          {
28242            "name": "appleDeviceRegistrationRequest",
28243            "description": "Mutations that modify an Apple Device registration request",
28244            "args": [],
28245            "type": {
28246              "kind": "NON_NULL",
28247              "name": null,
28248              "ofType": {
28249                "kind": "OBJECT",
28250                "name": "AppleDeviceRegistrationRequestMutation",
28251                "ofType": null
28252              }
28253            },
28254            "isDeprecated": false,
28255            "deprecationReason": null
28256          },
28257          {
28258            "name": "appleDistributionCertificate",
28259            "description": "Mutations that modify a Distribution Certificate",
28260            "args": [],
28261            "type": {
28262              "kind": "NON_NULL",
28263              "name": null,
28264              "ofType": {
28265                "kind": "OBJECT",
28266                "name": "AppleDistributionCertificateMutation",
28267                "ofType": null
28268              }
28269            },
28270            "isDeprecated": false,
28271            "deprecationReason": null
28272          },
28273          {
28274            "name": "appleProvisioningProfile",
28275            "description": "Mutations that modify a Provisioning Profile",
28276            "args": [],
28277            "type": {
28278              "kind": "NON_NULL",
28279              "name": null,
28280              "ofType": {
28281                "kind": "OBJECT",
28282                "name": "AppleProvisioningProfileMutation",
28283                "ofType": null
28284              }
28285            },
28286            "isDeprecated": false,
28287            "deprecationReason": null
28288          },
28289          {
28290            "name": "applePushKey",
28291            "description": "Mutations that modify an Apple Push Notification key",
28292            "args": [],
28293            "type": {
28294              "kind": "NON_NULL",
28295              "name": null,
28296              "ofType": {
28297                "kind": "OBJECT",
28298                "name": "ApplePushKeyMutation",
28299                "ofType": null
28300              }
28301            },
28302            "isDeprecated": false,
28303            "deprecationReason": null
28304          },
28305          {
28306            "name": "appleTeam",
28307            "description": "Mutations that modify an Apple Team",
28308            "args": [],
28309            "type": {
28310              "kind": "NON_NULL",
28311              "name": null,
28312              "ofType": {
28313                "kind": "OBJECT",
28314                "name": "AppleTeamMutation",
28315                "ofType": null
28316              }
28317            },
28318            "isDeprecated": false,
28319            "deprecationReason": null
28320          },
28321          {
28322            "name": "asset",
28323            "description": null,
28324            "args": [],
28325            "type": {
28326              "kind": "NON_NULL",
28327              "name": null,
28328              "ofType": {
28329                "kind": "OBJECT",
28330                "name": "AssetMutation",
28331                "ofType": null
28332              }
28333            },
28334            "isDeprecated": false,
28335            "deprecationReason": null
28336          },
28337          {
28338            "name": "build",
28339            "description": "Mutations that modify an EAS Build",
28340            "args": [
28341              {
28342                "name": "buildId",
28343                "description": null,
28344                "type": {
28345                  "kind": "SCALAR",
28346                  "name": "ID",
28347                  "ofType": null
28348                },
28349                "defaultValue": null,
28350                "isDeprecated": false,
28351                "deprecationReason": null
28352              }
28353            ],
28354            "type": {
28355              "kind": "NON_NULL",
28356              "name": null,
28357              "ofType": {
28358                "kind": "OBJECT",
28359                "name": "BuildMutation",
28360                "ofType": null
28361              }
28362            },
28363            "isDeprecated": false,
28364            "deprecationReason": null
28365          },
28366          {
28367            "name": "buildJob",
28368            "description": "Mutations that modify an BuildJob",
28369            "args": [
28370              {
28371                "name": "buildId",
28372                "description": null,
28373                "type": {
28374                  "kind": "NON_NULL",
28375                  "name": null,
28376                  "ofType": {
28377                    "kind": "SCALAR",
28378                    "name": "ID",
28379                    "ofType": null
28380                  }
28381                },
28382                "defaultValue": null,
28383                "isDeprecated": false,
28384                "deprecationReason": null
28385              }
28386            ],
28387            "type": {
28388              "kind": "NON_NULL",
28389              "name": null,
28390              "ofType": {
28391                "kind": "OBJECT",
28392                "name": "BuildJobMutation",
28393                "ofType": null
28394              }
28395            },
28396            "isDeprecated": false,
28397            "deprecationReason": null
28398          },
28399          {
28400            "name": "discordUser",
28401            "description": "Mutations for Discord users",
28402            "args": [],
28403            "type": {
28404              "kind": "NON_NULL",
28405              "name": null,
28406              "ofType": {
28407                "kind": "OBJECT",
28408                "name": "DiscordUserMutation",
28409                "ofType": null
28410              }
28411            },
28412            "isDeprecated": false,
28413            "deprecationReason": null
28414          },
28415          {
28416            "name": "emailSubscription",
28417            "description": "Mutations that modify an EmailSubscription",
28418            "args": [],
28419            "type": {
28420              "kind": "NON_NULL",
28421              "name": null,
28422              "ofType": {
28423                "kind": "OBJECT",
28424                "name": "EmailSubscriptionMutation",
28425                "ofType": null
28426              }
28427            },
28428            "isDeprecated": false,
28429            "deprecationReason": null
28430          },
28431          {
28432            "name": "environmentSecret",
28433            "description": "Mutations that create and delete EnvironmentSecrets",
28434            "args": [],
28435            "type": {
28436              "kind": "NON_NULL",
28437              "name": null,
28438              "ofType": {
28439                "kind": "OBJECT",
28440                "name": "EnvironmentSecretMutation",
28441                "ofType": null
28442              }
28443            },
28444            "isDeprecated": false,
28445            "deprecationReason": null
28446          },
28447          {
28448            "name": "githubApp",
28449            "description": "Mutations that utilize services facilitated by the GitHub App",
28450            "args": [],
28451            "type": {
28452              "kind": "NON_NULL",
28453              "name": null,
28454              "ofType": {
28455                "kind": "OBJECT",
28456                "name": "GitHubAppMutation",
28457                "ofType": null
28458              }
28459            },
28460            "isDeprecated": false,
28461            "deprecationReason": null
28462          },
28463          {
28464            "name": "githubAppInstallation",
28465            "description": "Mutations for GitHub App installations",
28466            "args": [],
28467            "type": {
28468              "kind": "NON_NULL",
28469              "name": null,
28470              "ofType": {
28471                "kind": "OBJECT",
28472                "name": "GitHubAppInstallationMutation",
28473                "ofType": null
28474              }
28475            },
28476            "isDeprecated": false,
28477            "deprecationReason": null
28478          },
28479          {
28480            "name": "githubRepository",
28481            "description": "Mutations for GitHub repositories",
28482            "args": [],
28483            "type": {
28484              "kind": "NON_NULL",
28485              "name": null,
28486              "ofType": {
28487                "kind": "OBJECT",
28488                "name": "GitHubRepositoryMutation",
28489                "ofType": null
28490              }
28491            },
28492            "isDeprecated": false,
28493            "deprecationReason": null
28494          },
28495          {
28496            "name": "githubRepositorySettings",
28497            "description": "Mutations for GitHub repository settings",
28498            "args": [],
28499            "type": {
28500              "kind": "NON_NULL",
28501              "name": null,
28502              "ofType": {
28503                "kind": "OBJECT",
28504                "name": "GitHubRepositorySettingsMutation",
28505                "ofType": null
28506              }
28507            },
28508            "isDeprecated": false,
28509            "deprecationReason": null
28510          },
28511          {
28512            "name": "githubUser",
28513            "description": "Mutations for GitHub users",
28514            "args": [],
28515            "type": {
28516              "kind": "NON_NULL",
28517              "name": null,
28518              "ofType": {
28519                "kind": "OBJECT",
28520                "name": "GitHubUserMutation",
28521                "ofType": null
28522              }
28523            },
28524            "isDeprecated": false,
28525            "deprecationReason": null
28526          },
28527          {
28528            "name": "googleServiceAccountKey",
28529            "description": "Mutations that modify a Google Service Account Key",
28530            "args": [],
28531            "type": {
28532              "kind": "NON_NULL",
28533              "name": null,
28534              "ofType": {
28535                "kind": "OBJECT",
28536                "name": "GoogleServiceAccountKeyMutation",
28537                "ofType": null
28538              }
28539            },
28540            "isDeprecated": false,
28541            "deprecationReason": null
28542          },
28543          {
28544            "name": "iosAppBuildCredentials",
28545            "description": "Mutations that modify the build credentials for an iOS app",
28546            "args": [],
28547            "type": {
28548              "kind": "NON_NULL",
28549              "name": null,
28550              "ofType": {
28551                "kind": "OBJECT",
28552                "name": "IosAppBuildCredentialsMutation",
28553                "ofType": null
28554              }
28555            },
28556            "isDeprecated": false,
28557            "deprecationReason": null
28558          },
28559          {
28560            "name": "iosAppCredentials",
28561            "description": "Mutations that modify the credentials for an iOS app",
28562            "args": [],
28563            "type": {
28564              "kind": "NON_NULL",
28565              "name": null,
28566              "ofType": {
28567                "kind": "OBJECT",
28568                "name": "IosAppCredentialsMutation",
28569                "ofType": null
28570              }
28571            },
28572            "isDeprecated": false,
28573            "deprecationReason": null
28574          },
28575          {
28576            "name": "keystoreGenerationUrl",
28577            "description": null,
28578            "args": [],
28579            "type": {
28580              "kind": "NON_NULL",
28581              "name": null,
28582              "ofType": {
28583                "kind": "OBJECT",
28584                "name": "KeystoreGenerationUrlMutation",
28585                "ofType": null
28586              }
28587            },
28588            "isDeprecated": false,
28589            "deprecationReason": null
28590          },
28591          {
28592            "name": "me",
28593            "description": "Mutations that modify the currently authenticated User",
28594            "args": [],
28595            "type": {
28596              "kind": "NON_NULL",
28597              "name": null,
28598              "ofType": {
28599                "kind": "OBJECT",
28600                "name": "MeMutation",
28601                "ofType": null
28602              }
28603            },
28604            "isDeprecated": false,
28605            "deprecationReason": null
28606          },
28607          {
28608            "name": "notificationSubscription",
28609            "description": "Mutations that modify a NotificationSubscription",
28610            "args": [],
28611            "type": {
28612              "kind": "NON_NULL",
28613              "name": null,
28614              "ofType": {
28615                "kind": "OBJECT",
28616                "name": "NotificationSubscriptionMutation",
28617                "ofType": null
28618              }
28619            },
28620            "isDeprecated": false,
28621            "deprecationReason": null
28622          },
28623          {
28624            "name": "robot",
28625            "description": "Mutations that create, update, and delete Robots",
28626            "args": [],
28627            "type": {
28628              "kind": "NON_NULL",
28629              "name": null,
28630              "ofType": {
28631                "kind": "OBJECT",
28632                "name": "RobotMutation",
28633                "ofType": null
28634              }
28635            },
28636            "isDeprecated": false,
28637            "deprecationReason": null
28638          },
28639          {
28640            "name": "serverlessFunction",
28641            "description": null,
28642            "args": [],
28643            "type": {
28644              "kind": "NON_NULL",
28645              "name": null,
28646              "ofType": {
28647                "kind": "OBJECT",
28648                "name": "ServerlessFunctionMutation",
28649                "ofType": null
28650              }
28651            },
28652            "isDeprecated": false,
28653            "deprecationReason": null
28654          },
28655          {
28656            "name": "submission",
28657            "description": "Mutations that modify an EAS Submit submission",
28658            "args": [],
28659            "type": {
28660              "kind": "NON_NULL",
28661              "name": null,
28662              "ofType": {
28663                "kind": "OBJECT",
28664                "name": "SubmissionMutation",
28665                "ofType": null
28666              }
28667            },
28668            "isDeprecated": false,
28669            "deprecationReason": null
28670          },
28671          {
28672            "name": "update",
28673            "description": null,
28674            "args": [],
28675            "type": {
28676              "kind": "NON_NULL",
28677              "name": null,
28678              "ofType": {
28679                "kind": "OBJECT",
28680                "name": "UpdateMutation",
28681                "ofType": null
28682              }
28683            },
28684            "isDeprecated": false,
28685            "deprecationReason": null
28686          },
28687          {
28688            "name": "updateBranch",
28689            "description": null,
28690            "args": [],
28691            "type": {
28692              "kind": "NON_NULL",
28693              "name": null,
28694              "ofType": {
28695                "kind": "OBJECT",
28696                "name": "UpdateBranchMutation",
28697                "ofType": null
28698              }
28699            },
28700            "isDeprecated": false,
28701            "deprecationReason": null
28702          },
28703          {
28704            "name": "updateChannel",
28705            "description": null,
28706            "args": [],
28707            "type": {
28708              "kind": "NON_NULL",
28709              "name": null,
28710              "ofType": {
28711                "kind": "OBJECT",
28712                "name": "UpdateChannelMutation",
28713                "ofType": null
28714              }
28715            },
28716            "isDeprecated": false,
28717            "deprecationReason": null
28718          },
28719          {
28720            "name": "uploadSession",
28721            "description": null,
28722            "args": [],
28723            "type": {
28724              "kind": "NON_NULL",
28725              "name": null,
28726              "ofType": {
28727                "kind": "OBJECT",
28728                "name": "UploadSession",
28729                "ofType": null
28730              }
28731            },
28732            "isDeprecated": false,
28733            "deprecationReason": null
28734          },
28735          {
28736            "name": "userInvitation",
28737            "description": "Mutations that create, delete, and accept UserInvitations",
28738            "args": [],
28739            "type": {
28740              "kind": "NON_NULL",
28741              "name": null,
28742              "ofType": {
28743                "kind": "OBJECT",
28744                "name": "UserInvitationMutation",
28745                "ofType": null
28746              }
28747            },
28748            "isDeprecated": false,
28749            "deprecationReason": null
28750          },
28751          {
28752            "name": "webhook",
28753            "description": "Mutations that create, delete, update Webhooks",
28754            "args": [],
28755            "type": {
28756              "kind": "NON_NULL",
28757              "name": null,
28758              "ofType": {
28759                "kind": "OBJECT",
28760                "name": "WebhookMutation",
28761                "ofType": null
28762              }
28763            },
28764            "isDeprecated": false,
28765            "deprecationReason": null
28766          }
28767        ],
28768        "inputFields": null,
28769        "interfaces": [],
28770        "enumValues": null,
28771        "possibleTypes": null
28772      },
28773      {
28774        "kind": "OBJECT",
28775        "name": "RootQuery",
28776        "description": null,
28777        "fields": [
28778          {
28779            "name": "_doNotUse",
28780            "description": "This is a placeholder field",
28781            "args": [],
28782            "type": {
28783              "kind": "SCALAR",
28784              "name": "String",
28785              "ofType": null
28786            },
28787            "isDeprecated": true,
28788            "deprecationReason": "Not used."
28789          },
28790          {
28791            "name": "account",
28792            "description": "Top-level query object for querying Accounts.",
28793            "args": [],
28794            "type": {
28795              "kind": "NON_NULL",
28796              "name": null,
28797              "ofType": {
28798                "kind": "OBJECT",
28799                "name": "AccountQuery",
28800                "ofType": null
28801              }
28802            },
28803            "isDeprecated": false,
28804            "deprecationReason": null
28805          },
28806          {
28807            "name": "accountSSOConfigurationPublicData",
28808            "description": "Top-level query object for querying AccountSSOConfigurationPublicData",
28809            "args": [],
28810            "type": {
28811              "kind": "NON_NULL",
28812              "name": null,
28813              "ofType": {
28814                "kind": "OBJECT",
28815                "name": "AccountSSOConfigurationPublicDataQuery",
28816                "ofType": null
28817              }
28818            },
28819            "isDeprecated": false,
28820            "deprecationReason": null
28821          },
28822          {
28823            "name": "actor",
28824            "description": "Top-level query object for querying Actors.",
28825            "args": [],
28826            "type": {
28827              "kind": "NON_NULL",
28828              "name": null,
28829              "ofType": {
28830                "kind": "OBJECT",
28831                "name": "ActorQuery",
28832                "ofType": null
28833              }
28834            },
28835            "isDeprecated": false,
28836            "deprecationReason": null
28837          },
28838          {
28839            "name": "allPublicApps",
28840            "description": "Public apps in the app directory",
28841            "args": [
28842              {
28843                "name": "filter",
28844                "description": "Filter to use to filter public app list",
28845                "type": {
28846                  "kind": "NON_NULL",
28847                  "name": null,
28848                  "ofType": {
28849                    "kind": "ENUM",
28850                    "name": "AppsFilter",
28851                    "ofType": null
28852                  }
28853                },
28854                "defaultValue": null,
28855                "isDeprecated": false,
28856                "deprecationReason": null
28857              },
28858              {
28859                "name": "limit",
28860                "description": null,
28861                "type": {
28862                  "kind": "SCALAR",
28863                  "name": "Int",
28864                  "ofType": null
28865                },
28866                "defaultValue": null,
28867                "isDeprecated": false,
28868                "deprecationReason": null
28869              },
28870              {
28871                "name": "offset",
28872                "description": null,
28873                "type": {
28874                  "kind": "SCALAR",
28875                  "name": "Int",
28876                  "ofType": null
28877                },
28878                "defaultValue": null,
28879                "isDeprecated": false,
28880                "deprecationReason": null
28881              },
28882              {
28883                "name": "sort",
28884                "description": "Method to sort by",
28885                "type": {
28886                  "kind": "NON_NULL",
28887                  "name": null,
28888                  "ofType": {
28889                    "kind": "ENUM",
28890                    "name": "AppSort",
28891                    "ofType": null
28892                  }
28893                },
28894                "defaultValue": null,
28895                "isDeprecated": false,
28896                "deprecationReason": null
28897              }
28898            ],
28899            "type": {
28900              "kind": "LIST",
28901              "name": null,
28902              "ofType": {
28903                "kind": "OBJECT",
28904                "name": "App",
28905                "ofType": null
28906              }
28907            },
28908            "isDeprecated": true,
28909            "deprecationReason": "Use 'all' field under 'app'."
28910          },
28911          {
28912            "name": "app",
28913            "description": null,
28914            "args": [],
28915            "type": {
28916              "kind": "NON_NULL",
28917              "name": null,
28918              "ofType": {
28919                "kind": "OBJECT",
28920                "name": "AppQuery",
28921                "ofType": null
28922              }
28923            },
28924            "isDeprecated": false,
28925            "deprecationReason": null
28926          },
28927          {
28928            "name": "appByAppId",
28929            "description": "Look up app by app id",
28930            "args": [
28931              {
28932                "name": "appId",
28933                "description": null,
28934                "type": {
28935                  "kind": "NON_NULL",
28936                  "name": null,
28937                  "ofType": {
28938                    "kind": "SCALAR",
28939                    "name": "String",
28940                    "ofType": null
28941                  }
28942                },
28943                "defaultValue": null,
28944                "isDeprecated": false,
28945                "deprecationReason": null
28946              }
28947            ],
28948            "type": {
28949              "kind": "OBJECT",
28950              "name": "App",
28951              "ofType": null
28952            },
28953            "isDeprecated": true,
28954            "deprecationReason": "Use 'byId' field under 'app'."
28955          },
28956          {
28957            "name": "appleDeviceRegistrationRequest",
28958            "description": "Top-level query object for querying Apple Device registration requests.",
28959            "args": [],
28960            "type": {
28961              "kind": "NON_NULL",
28962              "name": null,
28963              "ofType": {
28964                "kind": "OBJECT",
28965                "name": "AppleDeviceRegistrationRequestQuery",
28966                "ofType": null
28967              }
28968            },
28969            "isDeprecated": false,
28970            "deprecationReason": null
28971          },
28972          {
28973            "name": "appleTeam",
28974            "description": "Top-level query object for querying Apple Teams.",
28975            "args": [],
28976            "type": {
28977              "kind": "NON_NULL",
28978              "name": null,
28979              "ofType": {
28980                "kind": "OBJECT",
28981                "name": "AppleTeamQuery",
28982                "ofType": null
28983              }
28984            },
28985            "isDeprecated": false,
28986            "deprecationReason": null
28987          },
28988          {
28989            "name": "asset",
28990            "description": null,
28991            "args": [],
28992            "type": {
28993              "kind": "NON_NULL",
28994              "name": null,
28995              "ofType": {
28996                "kind": "OBJECT",
28997                "name": "AssetQuery",
28998                "ofType": null
28999              }
29000            },
29001            "isDeprecated": false,
29002            "deprecationReason": null
29003          },
29004          {
29005            "name": "backgroundJobReceipt",
29006            "description": null,
29007            "args": [],
29008            "type": {
29009              "kind": "NON_NULL",
29010              "name": null,
29011              "ofType": {
29012                "kind": "OBJECT",
29013                "name": "BackgroundJobReceiptQuery",
29014                "ofType": null
29015              }
29016            },
29017            "isDeprecated": false,
29018            "deprecationReason": null
29019          },
29020          {
29021            "name": "buildJobs",
29022            "description": null,
29023            "args": [],
29024            "type": {
29025              "kind": "NON_NULL",
29026              "name": null,
29027              "ofType": {
29028                "kind": "OBJECT",
29029                "name": "BuildJobQuery",
29030                "ofType": null
29031              }
29032            },
29033            "isDeprecated": false,
29034            "deprecationReason": null
29035          },
29036          {
29037            "name": "buildOrBuildJob",
29038            "description": null,
29039            "args": [],
29040            "type": {
29041              "kind": "NON_NULL",
29042              "name": null,
29043              "ofType": {
29044                "kind": "OBJECT",
29045                "name": "BuildOrBuildJobQuery",
29046                "ofType": null
29047              }
29048            },
29049            "isDeprecated": false,
29050            "deprecationReason": null
29051          },
29052          {
29053            "name": "buildPublicData",
29054            "description": "Top-level query object for querying BuildPublicData publicly.",
29055            "args": [],
29056            "type": {
29057              "kind": "NON_NULL",
29058              "name": null,
29059              "ofType": {
29060                "kind": "OBJECT",
29061                "name": "BuildPublicDataQuery",
29062                "ofType": null
29063              }
29064            },
29065            "isDeprecated": false,
29066            "deprecationReason": null
29067          },
29068          {
29069            "name": "builds",
29070            "description": null,
29071            "args": [],
29072            "type": {
29073              "kind": "NON_NULL",
29074              "name": null,
29075              "ofType": {
29076                "kind": "OBJECT",
29077                "name": "BuildQuery",
29078                "ofType": null
29079              }
29080            },
29081            "isDeprecated": false,
29082            "deprecationReason": null
29083          },
29084          {
29085            "name": "experimentation",
29086            "description": "Top-level query object for querying Experimentation configuration.",
29087            "args": [],
29088            "type": {
29089              "kind": "NON_NULL",
29090              "name": null,
29091              "ofType": {
29092                "kind": "OBJECT",
29093                "name": "ExperimentationQuery",
29094                "ofType": null
29095              }
29096            },
29097            "isDeprecated": false,
29098            "deprecationReason": null
29099          },
29100          {
29101            "name": "githubApp",
29102            "description": "Top-level query object for querying GitHub App information and resources it has access to.",
29103            "args": [],
29104            "type": {
29105              "kind": "NON_NULL",
29106              "name": null,
29107              "ofType": {
29108                "kind": "OBJECT",
29109                "name": "GitHubAppQuery",
29110                "ofType": null
29111              }
29112            },
29113            "isDeprecated": false,
29114            "deprecationReason": null
29115          },
29116          {
29117            "name": "invoice",
29118            "description": "Top-level query object for querying Stripe Invoices.",
29119            "args": [],
29120            "type": {
29121              "kind": "NON_NULL",
29122              "name": null,
29123              "ofType": {
29124                "kind": "OBJECT",
29125                "name": "InvoiceQuery",
29126                "ofType": null
29127              }
29128            },
29129            "isDeprecated": false,
29130            "deprecationReason": null
29131          },
29132          {
29133            "name": "me",
29134            "description": "If authenticated as a typical end user, this is the appropriate top-level\nquery object",
29135            "args": [],
29136            "type": {
29137              "kind": "OBJECT",
29138              "name": "User",
29139              "ofType": null
29140            },
29141            "isDeprecated": false,
29142            "deprecationReason": null
29143          },
29144          {
29145            "name": "meActor",
29146            "description": "If authenticated as any type of Actor, this is the appropriate top-level\nquery object",
29147            "args": [],
29148            "type": {
29149              "kind": "INTERFACE",
29150              "name": "Actor",
29151              "ofType": null
29152            },
29153            "isDeprecated": false,
29154            "deprecationReason": null
29155          },
29156          {
29157            "name": "meUserActor",
29158            "description": "If authenticated as any type of human end user (Actor types User or SSOUser),\nthis is the appropriate top-level query object",
29159            "args": [],
29160            "type": {
29161              "kind": "INTERFACE",
29162              "name": "UserActor",
29163              "ofType": null
29164            },
29165            "isDeprecated": false,
29166            "deprecationReason": null
29167          },
29168          {
29169            "name": "project",
29170            "description": null,
29171            "args": [],
29172            "type": {
29173              "kind": "NON_NULL",
29174              "name": null,
29175              "ofType": {
29176                "kind": "OBJECT",
29177                "name": "ProjectQuery",
29178                "ofType": null
29179              }
29180            },
29181            "isDeprecated": false,
29182            "deprecationReason": null
29183          },
29184          {
29185            "name": "snack",
29186            "description": null,
29187            "args": [],
29188            "type": {
29189              "kind": "NON_NULL",
29190              "name": null,
29191              "ofType": {
29192                "kind": "OBJECT",
29193                "name": "SnackQuery",
29194                "ofType": null
29195              }
29196            },
29197            "isDeprecated": false,
29198            "deprecationReason": null
29199          },
29200          {
29201            "name": "ssoUser",
29202            "description": "Top-level query object for querying SSO Users.",
29203            "args": [],
29204            "type": {
29205              "kind": "NON_NULL",
29206              "name": null,
29207              "ofType": {
29208                "kind": "OBJECT",
29209                "name": "SSOUserQuery",
29210                "ofType": null
29211              }
29212            },
29213            "isDeprecated": false,
29214            "deprecationReason": null
29215          },
29216          {
29217            "name": "statuspageService",
29218            "description": "Top-level query object for querying Expo status page services.",
29219            "args": [],
29220            "type": {
29221              "kind": "NON_NULL",
29222              "name": null,
29223              "ofType": {
29224                "kind": "OBJECT",
29225                "name": "StatuspageServiceQuery",
29226                "ofType": null
29227              }
29228            },
29229            "isDeprecated": false,
29230            "deprecationReason": null
29231          },
29232          {
29233            "name": "submissions",
29234            "description": null,
29235            "args": [],
29236            "type": {
29237              "kind": "NON_NULL",
29238              "name": null,
29239              "ofType": {
29240                "kind": "OBJECT",
29241                "name": "SubmissionQuery",
29242                "ofType": null
29243              }
29244            },
29245            "isDeprecated": false,
29246            "deprecationReason": null
29247          },
29248          {
29249            "name": "updatesByGroup",
29250            "description": "fetch all updates in a group",
29251            "args": [
29252              {
29253                "name": "group",
29254                "description": null,
29255                "type": {
29256                  "kind": "NON_NULL",
29257                  "name": null,
29258                  "ofType": {
29259                    "kind": "SCALAR",
29260                    "name": "ID",
29261                    "ofType": null
29262                  }
29263                },
29264                "defaultValue": null,
29265                "isDeprecated": false,
29266                "deprecationReason": null
29267              }
29268            ],
29269            "type": {
29270              "kind": "NON_NULL",
29271              "name": null,
29272              "ofType": {
29273                "kind": "LIST",
29274                "name": null,
29275                "ofType": {
29276                  "kind": "NON_NULL",
29277                  "name": null,
29278                  "ofType": {
29279                    "kind": "OBJECT",
29280                    "name": "Update",
29281                    "ofType": null
29282                  }
29283                }
29284              }
29285            },
29286            "isDeprecated": false,
29287            "deprecationReason": null
29288          },
29289          {
29290            "name": "user",
29291            "description": "Top-level query object for querying Users.",
29292            "args": [],
29293            "type": {
29294              "kind": "NON_NULL",
29295              "name": null,
29296              "ofType": {
29297                "kind": "OBJECT",
29298                "name": "UserQuery",
29299                "ofType": null
29300              }
29301            },
29302            "isDeprecated": false,
29303            "deprecationReason": null
29304          },
29305          {
29306            "name": "userActor",
29307            "description": "Top-level query object for querying UserActors.",
29308            "args": [],
29309            "type": {
29310              "kind": "NON_NULL",
29311              "name": null,
29312              "ofType": {
29313                "kind": "OBJECT",
29314                "name": "UserActorQuery",
29315                "ofType": null
29316              }
29317            },
29318            "isDeprecated": false,
29319            "deprecationReason": null
29320          },
29321          {
29322            "name": "userByUserId",
29323            "description": null,
29324            "args": [
29325              {
29326                "name": "userId",
29327                "description": null,
29328                "type": {
29329                  "kind": "NON_NULL",
29330                  "name": null,
29331                  "ofType": {
29332                    "kind": "SCALAR",
29333                    "name": "String",
29334                    "ofType": null
29335                  }
29336                },
29337                "defaultValue": null,
29338                "isDeprecated": false,
29339                "deprecationReason": null
29340              }
29341            ],
29342            "type": {
29343              "kind": "OBJECT",
29344              "name": "User",
29345              "ofType": null
29346            },
29347            "isDeprecated": true,
29348            "deprecationReason": "Use 'byId' field under 'user'."
29349          },
29350          {
29351            "name": "userByUsername",
29352            "description": null,
29353            "args": [
29354              {
29355                "name": "username",
29356                "description": null,
29357                "type": {
29358                  "kind": "NON_NULL",
29359                  "name": null,
29360                  "ofType": {
29361                    "kind": "SCALAR",
29362                    "name": "String",
29363                    "ofType": null
29364                  }
29365                },
29366                "defaultValue": null,
29367                "isDeprecated": false,
29368                "deprecationReason": null
29369              }
29370            ],
29371            "type": {
29372              "kind": "OBJECT",
29373              "name": "User",
29374              "ofType": null
29375            },
29376            "isDeprecated": true,
29377            "deprecationReason": "Use 'byUsername' field under 'user'."
29378          },
29379          {
29380            "name": "userInvitationPublicData",
29381            "description": "Top-level query object for querying UserInvitationPublicData publicly.",
29382            "args": [],
29383            "type": {
29384              "kind": "NON_NULL",
29385              "name": null,
29386              "ofType": {
29387                "kind": "OBJECT",
29388                "name": "UserInvitationPublicDataQuery",
29389                "ofType": null
29390              }
29391            },
29392            "isDeprecated": false,
29393            "deprecationReason": null
29394          },
29395          {
29396            "name": "viewer",
29397            "description": "If authenticated as a typical end user, this is the appropriate top-level\nquery object",
29398            "args": [],
29399            "type": {
29400              "kind": "OBJECT",
29401              "name": "User",
29402              "ofType": null
29403            },
29404            "isDeprecated": false,
29405            "deprecationReason": null
29406          },
29407          {
29408            "name": "webhook",
29409            "description": "Top-level query object for querying Webhooks.",
29410            "args": [],
29411            "type": {
29412              "kind": "NON_NULL",
29413              "name": null,
29414              "ofType": {
29415                "kind": "OBJECT",
29416                "name": "WebhookQuery",
29417                "ofType": null
29418              }
29419            },
29420            "isDeprecated": false,
29421            "deprecationReason": null
29422          }
29423        ],
29424        "inputFields": null,
29425        "interfaces": [],
29426        "enumValues": null,
29427        "possibleTypes": null
29428      },
29429      {
29430        "kind": "OBJECT",
29431        "name": "Runtime",
29432        "description": null,
29433        "fields": [
29434          {
29435            "name": "app",
29436            "description": null,
29437            "args": [],
29438            "type": {
29439              "kind": "NON_NULL",
29440              "name": null,
29441              "ofType": {
29442                "kind": "OBJECT",
29443                "name": "App",
29444                "ofType": null
29445              }
29446            },
29447            "isDeprecated": false,
29448            "deprecationReason": null
29449          },
29450          {
29451            "name": "firstBuildCreatedAt",
29452            "description": null,
29453            "args": [],
29454            "type": {
29455              "kind": "NON_NULL",
29456              "name": null,
29457              "ofType": {
29458                "kind": "SCALAR",
29459                "name": "DateTime",
29460                "ofType": null
29461              }
29462            },
29463            "isDeprecated": false,
29464            "deprecationReason": null
29465          },
29466          {
29467            "name": "id",
29468            "description": null,
29469            "args": [],
29470            "type": {
29471              "kind": "NON_NULL",
29472              "name": null,
29473              "ofType": {
29474                "kind": "SCALAR",
29475                "name": "ID",
29476                "ofType": null
29477              }
29478            },
29479            "isDeprecated": false,
29480            "deprecationReason": null
29481          },
29482          {
29483            "name": "version",
29484            "description": null,
29485            "args": [],
29486            "type": {
29487              "kind": "NON_NULL",
29488              "name": null,
29489              "ofType": {
29490                "kind": "SCALAR",
29491                "name": "String",
29492                "ofType": null
29493              }
29494            },
29495            "isDeprecated": false,
29496            "deprecationReason": null
29497          }
29498        ],
29499        "inputFields": null,
29500        "interfaces": [],
29501        "enumValues": null,
29502        "possibleTypes": null
29503      },
29504      {
29505        "kind": "OBJECT",
29506        "name": "SSOUser",
29507        "description": "Represents a human SSO (not robot) actor.",
29508        "fields": [
29509          {
29510            "name": "accessTokens",
29511            "description": "Access Tokens belonging to this actor, none at present",
29512            "args": [],
29513            "type": {
29514              "kind": "NON_NULL",
29515              "name": null,
29516              "ofType": {
29517                "kind": "LIST",
29518                "name": null,
29519                "ofType": {
29520                  "kind": "NON_NULL",
29521                  "name": null,
29522                  "ofType": {
29523                    "kind": "OBJECT",
29524                    "name": "AccessToken",
29525                    "ofType": null
29526                  }
29527                }
29528              }
29529            },
29530            "isDeprecated": false,
29531            "deprecationReason": null
29532          },
29533          {
29534            "name": "accounts",
29535            "description": null,
29536            "args": [],
29537            "type": {
29538              "kind": "NON_NULL",
29539              "name": null,
29540              "ofType": {
29541                "kind": "LIST",
29542                "name": null,
29543                "ofType": {
29544                  "kind": "NON_NULL",
29545                  "name": null,
29546                  "ofType": {
29547                    "kind": "OBJECT",
29548                    "name": "Account",
29549                    "ofType": null
29550                  }
29551                }
29552              }
29553            },
29554            "isDeprecated": false,
29555            "deprecationReason": null
29556          },
29557          {
29558            "name": "activityTimelineProjectActivities",
29559            "description": "Coalesced project activity for all apps belonging to all accounts this user belongs to. Only resolves for the viewer.",
29560            "args": [
29561              {
29562                "name": "createdBefore",
29563                "description": " Offset the query ",
29564                "type": {
29565                  "kind": "SCALAR",
29566                  "name": "DateTime",
29567                  "ofType": null
29568                },
29569                "defaultValue": null,
29570                "isDeprecated": false,
29571                "deprecationReason": null
29572              },
29573              {
29574                "name": "filterTypes",
29575                "description": " Types of objects to filter ",
29576                "type": {
29577                  "kind": "LIST",
29578                  "name": null,
29579                  "ofType": {
29580                    "kind": "NON_NULL",
29581                    "name": null,
29582                    "ofType": {
29583                      "kind": "ENUM",
29584                      "name": "ActivityTimelineProjectActivityType",
29585                      "ofType": null
29586                    }
29587                  }
29588                },
29589                "defaultValue": null,
29590                "isDeprecated": false,
29591                "deprecationReason": null
29592              },
29593              {
29594                "name": "limit",
29595                "description": null,
29596                "type": {
29597                  "kind": "NON_NULL",
29598                  "name": null,
29599                  "ofType": {
29600                    "kind": "SCALAR",
29601                    "name": "Int",
29602                    "ofType": null
29603                  }
29604                },
29605                "defaultValue": null,
29606                "isDeprecated": false,
29607                "deprecationReason": null
29608              }
29609            ],
29610            "type": {
29611              "kind": "NON_NULL",
29612              "name": null,
29613              "ofType": {
29614                "kind": "LIST",
29615                "name": null,
29616                "ofType": {
29617                  "kind": "NON_NULL",
29618                  "name": null,
29619                  "ofType": {
29620                    "kind": "INTERFACE",
29621                    "name": "ActivityTimelineProjectActivity",
29622                    "ofType": null
29623                  }
29624                }
29625              }
29626            },
29627            "isDeprecated": false,
29628            "deprecationReason": null
29629          },
29630          {
29631            "name": "appCount",
29632            "description": null,
29633            "args": [],
29634            "type": {
29635              "kind": "NON_NULL",
29636              "name": null,
29637              "ofType": {
29638                "kind": "SCALAR",
29639                "name": "Int",
29640                "ofType": null
29641              }
29642            },
29643            "isDeprecated": false,
29644            "deprecationReason": null
29645          },
29646          {
29647            "name": "appetizeCode",
29648            "description": null,
29649            "args": [],
29650            "type": {
29651              "kind": "SCALAR",
29652              "name": "String",
29653              "ofType": null
29654            },
29655            "isDeprecated": true,
29656            "deprecationReason": "No longer supported"
29657          },
29658          {
29659            "name": "apps",
29660            "description": "Apps this user has published. If this user is the viewer, this field returns the apps the user has access to.",
29661            "args": [
29662              {
29663                "name": "includeUnpublished",
29664                "description": null,
29665                "type": {
29666                  "kind": "SCALAR",
29667                  "name": "Boolean",
29668                  "ofType": null
29669                },
29670                "defaultValue": null,
29671                "isDeprecated": false,
29672                "deprecationReason": null
29673              },
29674              {
29675                "name": "limit",
29676                "description": null,
29677                "type": {
29678                  "kind": "NON_NULL",
29679                  "name": null,
29680                  "ofType": {
29681                    "kind": "SCALAR",
29682                    "name": "Int",
29683                    "ofType": null
29684                  }
29685                },
29686                "defaultValue": null,
29687                "isDeprecated": false,
29688                "deprecationReason": null
29689              },
29690              {
29691                "name": "offset",
29692                "description": null,
29693                "type": {
29694                  "kind": "NON_NULL",
29695                  "name": null,
29696                  "ofType": {
29697                    "kind": "SCALAR",
29698                    "name": "Int",
29699                    "ofType": null
29700                  }
29701                },
29702                "defaultValue": null,
29703                "isDeprecated": false,
29704                "deprecationReason": null
29705              }
29706            ],
29707            "type": {
29708              "kind": "NON_NULL",
29709              "name": null,
29710              "ofType": {
29711                "kind": "LIST",
29712                "name": null,
29713                "ofType": {
29714                  "kind": "NON_NULL",
29715                  "name": null,
29716                  "ofType": {
29717                    "kind": "OBJECT",
29718                    "name": "App",
29719                    "ofType": null
29720                  }
29721                }
29722              }
29723            },
29724            "isDeprecated": false,
29725            "deprecationReason": null
29726          },
29727          {
29728            "name": "bestContactEmail",
29729            "description": null,
29730            "args": [],
29731            "type": {
29732              "kind": "SCALAR",
29733              "name": "String",
29734              "ofType": null
29735            },
29736            "isDeprecated": false,
29737            "deprecationReason": null
29738          },
29739          {
29740            "name": "created",
29741            "description": null,
29742            "args": [],
29743            "type": {
29744              "kind": "NON_NULL",
29745              "name": null,
29746              "ofType": {
29747                "kind": "SCALAR",
29748                "name": "DateTime",
29749                "ofType": null
29750              }
29751            },
29752            "isDeprecated": false,
29753            "deprecationReason": null
29754          },
29755          {
29756            "name": "discordUser",
29757            "description": "Discord account linked to a user",
29758            "args": [],
29759            "type": {
29760              "kind": "OBJECT",
29761              "name": "DiscordUser",
29762              "ofType": null
29763            },
29764            "isDeprecated": false,
29765            "deprecationReason": null
29766          },
29767          {
29768            "name": "displayName",
29769            "description": null,
29770            "args": [],
29771            "type": {
29772              "kind": "NON_NULL",
29773              "name": null,
29774              "ofType": {
29775                "kind": "SCALAR",
29776                "name": "String",
29777                "ofType": null
29778              }
29779            },
29780            "isDeprecated": false,
29781            "deprecationReason": null
29782          },
29783          {
29784            "name": "featureGates",
29785            "description": "Server feature gate values for this actor, optionally filtering by desired gates.\nOnly resolves for the viewer.",
29786            "args": [
29787              {
29788                "name": "filter",
29789                "description": null,
29790                "type": {
29791                  "kind": "LIST",
29792                  "name": null,
29793                  "ofType": {
29794                    "kind": "NON_NULL",
29795                    "name": null,
29796                    "ofType": {
29797                      "kind": "SCALAR",
29798                      "name": "String",
29799                      "ofType": null
29800                    }
29801                  }
29802                },
29803                "defaultValue": null,
29804                "isDeprecated": false,
29805                "deprecationReason": null
29806              }
29807            ],
29808            "type": {
29809              "kind": "NON_NULL",
29810              "name": null,
29811              "ofType": {
29812                "kind": "SCALAR",
29813                "name": "JSONObject",
29814                "ofType": null
29815              }
29816            },
29817            "isDeprecated": false,
29818            "deprecationReason": null
29819          },
29820          {
29821            "name": "firstName",
29822            "description": null,
29823            "args": [],
29824            "type": {
29825              "kind": "SCALAR",
29826              "name": "String",
29827              "ofType": null
29828            },
29829            "isDeprecated": false,
29830            "deprecationReason": null
29831          },
29832          {
29833            "name": "fullName",
29834            "description": null,
29835            "args": [],
29836            "type": {
29837              "kind": "SCALAR",
29838              "name": "String",
29839              "ofType": null
29840            },
29841            "isDeprecated": false,
29842            "deprecationReason": null
29843          },
29844          {
29845            "name": "githubUser",
29846            "description": "GitHub account linked to a user",
29847            "args": [],
29848            "type": {
29849              "kind": "OBJECT",
29850              "name": "GitHubUser",
29851              "ofType": null
29852            },
29853            "isDeprecated": false,
29854            "deprecationReason": null
29855          },
29856          {
29857            "name": "githubUsername",
29858            "description": null,
29859            "args": [],
29860            "type": {
29861              "kind": "SCALAR",
29862              "name": "String",
29863              "ofType": null
29864            },
29865            "isDeprecated": true,
29866            "deprecationReason": "No longer supported"
29867          },
29868          {
29869            "name": "id",
29870            "description": null,
29871            "args": [],
29872            "type": {
29873              "kind": "NON_NULL",
29874              "name": null,
29875              "ofType": {
29876                "kind": "SCALAR",
29877                "name": "ID",
29878                "ofType": null
29879              }
29880            },
29881            "isDeprecated": false,
29882            "deprecationReason": null
29883          },
29884          {
29885            "name": "industry",
29886            "description": null,
29887            "args": [],
29888            "type": {
29889              "kind": "SCALAR",
29890              "name": "String",
29891              "ofType": null
29892            },
29893            "isDeprecated": true,
29894            "deprecationReason": "No longer supported"
29895          },
29896          {
29897            "name": "isExpoAdmin",
29898            "description": null,
29899            "args": [],
29900            "type": {
29901              "kind": "NON_NULL",
29902              "name": null,
29903              "ofType": {
29904                "kind": "SCALAR",
29905                "name": "Boolean",
29906                "ofType": null
29907              }
29908            },
29909            "isDeprecated": false,
29910            "deprecationReason": null
29911          },
29912          {
29913            "name": "lastName",
29914            "description": null,
29915            "args": [],
29916            "type": {
29917              "kind": "SCALAR",
29918              "name": "String",
29919              "ofType": null
29920            },
29921            "isDeprecated": false,
29922            "deprecationReason": null
29923          },
29924          {
29925            "name": "location",
29926            "description": null,
29927            "args": [],
29928            "type": {
29929              "kind": "SCALAR",
29930              "name": "String",
29931              "ofType": null
29932            },
29933            "isDeprecated": true,
29934            "deprecationReason": "No longer supported"
29935          },
29936          {
29937            "name": "notificationSubscriptions",
29938            "description": null,
29939            "args": [
29940              {
29941                "name": "filter",
29942                "description": null,
29943                "type": {
29944                  "kind": "INPUT_OBJECT",
29945                  "name": "NotificationSubscriptionFilter",
29946                  "ofType": null
29947                },
29948                "defaultValue": null,
29949                "isDeprecated": false,
29950                "deprecationReason": null
29951              }
29952            ],
29953            "type": {
29954              "kind": "NON_NULL",
29955              "name": null,
29956              "ofType": {
29957                "kind": "LIST",
29958                "name": null,
29959                "ofType": {
29960                  "kind": "NON_NULL",
29961                  "name": null,
29962                  "ofType": {
29963                    "kind": "OBJECT",
29964                    "name": "NotificationSubscription",
29965                    "ofType": null
29966                  }
29967                }
29968              }
29969            },
29970            "isDeprecated": false,
29971            "deprecationReason": null
29972          },
29973          {
29974            "name": "primaryAccount",
29975            "description": "Associated accounts",
29976            "args": [],
29977            "type": {
29978              "kind": "NON_NULL",
29979              "name": null,
29980              "ofType": {
29981                "kind": "OBJECT",
29982                "name": "Account",
29983                "ofType": null
29984              }
29985            },
29986            "isDeprecated": false,
29987            "deprecationReason": null
29988          },
29989          {
29990            "name": "profilePhoto",
29991            "description": null,
29992            "args": [],
29993            "type": {
29994              "kind": "NON_NULL",
29995              "name": null,
29996              "ofType": {
29997                "kind": "SCALAR",
29998                "name": "String",
29999                "ofType": null
30000              }
30001            },
30002            "isDeprecated": false,
30003            "deprecationReason": null
30004          },
30005          {
30006            "name": "snacks",
30007            "description": "Snacks associated with this account",
30008            "args": [
30009              {
30010                "name": "limit",
30011                "description": null,
30012                "type": {
30013                  "kind": "NON_NULL",
30014                  "name": null,
30015                  "ofType": {
30016                    "kind": "SCALAR",
30017                    "name": "Int",
30018                    "ofType": null
30019                  }
30020                },
30021                "defaultValue": null,
30022                "isDeprecated": false,
30023                "deprecationReason": null
30024              },
30025              {
30026                "name": "offset",
30027                "description": null,
30028                "type": {
30029                  "kind": "NON_NULL",
30030                  "name": null,
30031                  "ofType": {
30032                    "kind": "SCALAR",
30033                    "name": "Int",
30034                    "ofType": null
30035                  }
30036                },
30037                "defaultValue": null,
30038                "isDeprecated": false,
30039                "deprecationReason": null
30040              }
30041            ],
30042            "type": {
30043              "kind": "NON_NULL",
30044              "name": null,
30045              "ofType": {
30046                "kind": "LIST",
30047                "name": null,
30048                "ofType": {
30049                  "kind": "NON_NULL",
30050                  "name": null,
30051                  "ofType": {
30052                    "kind": "OBJECT",
30053                    "name": "Snack",
30054                    "ofType": null
30055                  }
30056                }
30057              }
30058            },
30059            "isDeprecated": false,
30060            "deprecationReason": null
30061          },
30062          {
30063            "name": "twitterUsername",
30064            "description": null,
30065            "args": [],
30066            "type": {
30067              "kind": "SCALAR",
30068              "name": "String",
30069              "ofType": null
30070            },
30071            "isDeprecated": true,
30072            "deprecationReason": "No longer supported"
30073          },
30074          {
30075            "name": "username",
30076            "description": null,
30077            "args": [],
30078            "type": {
30079              "kind": "NON_NULL",
30080              "name": null,
30081              "ofType": {
30082                "kind": "SCALAR",
30083                "name": "String",
30084                "ofType": null
30085              }
30086            },
30087            "isDeprecated": false,
30088            "deprecationReason": null
30089          }
30090        ],
30091        "inputFields": null,
30092        "interfaces": [
30093          {
30094            "kind": "INTERFACE",
30095            "name": "Actor",
30096            "ofType": null
30097          },
30098          {
30099            "kind": "INTERFACE",
30100            "name": "UserActor",
30101            "ofType": null
30102          }
30103        ],
30104        "enumValues": null,
30105        "possibleTypes": null
30106      },
30107      {
30108        "kind": "INPUT_OBJECT",
30109        "name": "SSOUserDataInput",
30110        "description": null,
30111        "fields": null,
30112        "inputFields": [
30113          {
30114            "name": "firstName",
30115            "description": null,
30116            "type": {
30117              "kind": "SCALAR",
30118              "name": "String",
30119              "ofType": null
30120            },
30121            "defaultValue": null,
30122            "isDeprecated": false,
30123            "deprecationReason": null
30124          },
30125          {
30126            "name": "lastName",
30127            "description": null,
30128            "type": {
30129              "kind": "SCALAR",
30130              "name": "String",
30131              "ofType": null
30132            },
30133            "defaultValue": null,
30134            "isDeprecated": false,
30135            "deprecationReason": null
30136          }
30137        ],
30138        "interfaces": null,
30139        "enumValues": null,
30140        "possibleTypes": null
30141      },
30142      {
30143        "kind": "OBJECT",
30144        "name": "SSOUserQuery",
30145        "description": null,
30146        "fields": [
30147          {
30148            "name": "byId",
30149            "description": "Query an SSOUser by ID",
30150            "args": [
30151              {
30152                "name": "userId",
30153                "description": null,
30154                "type": {
30155                  "kind": "NON_NULL",
30156                  "name": null,
30157                  "ofType": {
30158                    "kind": "SCALAR",
30159                    "name": "ID",
30160                    "ofType": null
30161                  }
30162                },
30163                "defaultValue": null,
30164                "isDeprecated": false,
30165                "deprecationReason": null
30166              }
30167            ],
30168            "type": {
30169              "kind": "NON_NULL",
30170              "name": null,
30171              "ofType": {
30172                "kind": "OBJECT",
30173                "name": "SSOUser",
30174                "ofType": null
30175              }
30176            },
30177            "isDeprecated": false,
30178            "deprecationReason": null
30179          },
30180          {
30181            "name": "byUsername",
30182            "description": "Query an SSOUser by username",
30183            "args": [
30184              {
30185                "name": "username",
30186                "description": null,
30187                "type": {
30188                  "kind": "NON_NULL",
30189                  "name": null,
30190                  "ofType": {
30191                    "kind": "SCALAR",
30192                    "name": "String",
30193                    "ofType": null
30194                  }
30195                },
30196                "defaultValue": null,
30197                "isDeprecated": false,
30198                "deprecationReason": null
30199              }
30200            ],
30201            "type": {
30202              "kind": "NON_NULL",
30203              "name": null,
30204              "ofType": {
30205                "kind": "OBJECT",
30206                "name": "SSOUser",
30207                "ofType": null
30208              }
30209            },
30210            "isDeprecated": false,
30211            "deprecationReason": null
30212          }
30213        ],
30214        "inputFields": null,
30215        "interfaces": [],
30216        "enumValues": null,
30217        "possibleTypes": null
30218      },
30219      {
30220        "kind": "OBJECT",
30221        "name": "SecondFactorBooleanResult",
30222        "description": null,
30223        "fields": [
30224          {
30225            "name": "success",
30226            "description": null,
30227            "args": [],
30228            "type": {
30229              "kind": "NON_NULL",
30230              "name": null,
30231              "ofType": {
30232                "kind": "SCALAR",
30233                "name": "Boolean",
30234                "ofType": null
30235              }
30236            },
30237            "isDeprecated": false,
30238            "deprecationReason": null
30239          }
30240        ],
30241        "inputFields": null,
30242        "interfaces": [],
30243        "enumValues": null,
30244        "possibleTypes": null
30245      },
30246      {
30247        "kind": "INPUT_OBJECT",
30248        "name": "SecondFactorDeviceConfiguration",
30249        "description": null,
30250        "fields": null,
30251        "inputFields": [
30252          {
30253            "name": "isPrimary",
30254            "description": null,
30255            "type": {
30256              "kind": "NON_NULL",
30257              "name": null,
30258              "ofType": {
30259                "kind": "SCALAR",
30260                "name": "Boolean",
30261                "ofType": null
30262              }
30263            },
30264            "defaultValue": null,
30265            "isDeprecated": false,
30266            "deprecationReason": null
30267          },
30268          {
30269            "name": "method",
30270            "description": null,
30271            "type": {
30272              "kind": "NON_NULL",
30273              "name": null,
30274              "ofType": {
30275                "kind": "ENUM",
30276                "name": "SecondFactorMethod",
30277                "ofType": null
30278              }
30279            },
30280            "defaultValue": null,
30281            "isDeprecated": false,
30282            "deprecationReason": null
30283          },
30284          {
30285            "name": "name",
30286            "description": null,
30287            "type": {
30288              "kind": "NON_NULL",
30289              "name": null,
30290              "ofType": {
30291                "kind": "SCALAR",
30292                "name": "String",
30293                "ofType": null
30294              }
30295            },
30296            "defaultValue": null,
30297            "isDeprecated": false,
30298            "deprecationReason": null
30299          },
30300          {
30301            "name": "smsPhoneNumber",
30302            "description": null,
30303            "type": {
30304              "kind": "SCALAR",
30305              "name": "String",
30306              "ofType": null
30307            },
30308            "defaultValue": null,
30309            "isDeprecated": false,
30310            "deprecationReason": null
30311          }
30312        ],
30313        "interfaces": null,
30314        "enumValues": null,
30315        "possibleTypes": null
30316      },
30317      {
30318        "kind": "OBJECT",
30319        "name": "SecondFactorDeviceConfigurationResult",
30320        "description": null,
30321        "fields": [
30322          {
30323            "name": "keyURI",
30324            "description": null,
30325            "args": [],
30326            "type": {
30327              "kind": "NON_NULL",
30328              "name": null,
30329              "ofType": {
30330                "kind": "SCALAR",
30331                "name": "String",
30332                "ofType": null
30333              }
30334            },
30335            "isDeprecated": false,
30336            "deprecationReason": null
30337          },
30338          {
30339            "name": "secondFactorDevice",
30340            "description": null,
30341            "args": [],
30342            "type": {
30343              "kind": "NON_NULL",
30344              "name": null,
30345              "ofType": {
30346                "kind": "OBJECT",
30347                "name": "UserSecondFactorDevice",
30348                "ofType": null
30349              }
30350            },
30351            "isDeprecated": false,
30352            "deprecationReason": null
30353          },
30354          {
30355            "name": "secret",
30356            "description": null,
30357            "args": [],
30358            "type": {
30359              "kind": "NON_NULL",
30360              "name": null,
30361              "ofType": {
30362                "kind": "SCALAR",
30363                "name": "String",
30364                "ofType": null
30365              }
30366            },
30367            "isDeprecated": false,
30368            "deprecationReason": null
30369          }
30370        ],
30371        "inputFields": null,
30372        "interfaces": [],
30373        "enumValues": null,
30374        "possibleTypes": null
30375      },
30376      {
30377        "kind": "OBJECT",
30378        "name": "SecondFactorInitiationResult",
30379        "description": null,
30380        "fields": [
30381          {
30382            "name": "configurationResults",
30383            "description": null,
30384            "args": [],
30385            "type": {
30386              "kind": "NON_NULL",
30387              "name": null,
30388              "ofType": {
30389                "kind": "LIST",
30390                "name": null,
30391                "ofType": {
30392                  "kind": "NON_NULL",
30393                  "name": null,
30394                  "ofType": {
30395                    "kind": "OBJECT",
30396                    "name": "SecondFactorDeviceConfigurationResult",
30397                    "ofType": null
30398                  }
30399                }
30400              }
30401            },
30402            "isDeprecated": false,
30403            "deprecationReason": null
30404          },
30405          {
30406            "name": "plaintextBackupCodes",
30407            "description": null,
30408            "args": [],
30409            "type": {
30410              "kind": "NON_NULL",
30411              "name": null,
30412              "ofType": {
30413                "kind": "LIST",
30414                "name": null,
30415                "ofType": {
30416                  "kind": "NON_NULL",
30417                  "name": null,
30418                  "ofType": {
30419                    "kind": "SCALAR",
30420                    "name": "String",
30421                    "ofType": null
30422                  }
30423                }
30424              }
30425            },
30426            "isDeprecated": false,
30427            "deprecationReason": null
30428          }
30429        ],
30430        "inputFields": null,
30431        "interfaces": [],
30432        "enumValues": null,
30433        "possibleTypes": null
30434      },
30435      {
30436        "kind": "ENUM",
30437        "name": "SecondFactorMethod",
30438        "description": null,
30439        "fields": null,
30440        "inputFields": null,
30441        "interfaces": null,
30442        "enumValues": [
30443          {
30444            "name": "AUTHENTICATOR",
30445            "description": "Google Authenticator (TOTP)",
30446            "isDeprecated": false,
30447            "deprecationReason": null
30448          },
30449          {
30450            "name": "SMS",
30451            "description": "SMS",
30452            "isDeprecated": false,
30453            "deprecationReason": null
30454          }
30455        ],
30456        "possibleTypes": null
30457      },
30458      {
30459        "kind": "OBJECT",
30460        "name": "SecondFactorRegenerateBackupCodesResult",
30461        "description": null,
30462        "fields": [
30463          {
30464            "name": "plaintextBackupCodes",
30465            "description": null,
30466            "args": [],
30467            "type": {
30468              "kind": "NON_NULL",
30469              "name": null,
30470              "ofType": {
30471                "kind": "LIST",
30472                "name": null,
30473                "ofType": {
30474                  "kind": "NON_NULL",
30475                  "name": null,
30476                  "ofType": {
30477                    "kind": "SCALAR",
30478                    "name": "String",
30479                    "ofType": null
30480                  }
30481                }
30482              }
30483            },
30484            "isDeprecated": false,
30485            "deprecationReason": null
30486          }
30487        ],
30488        "inputFields": null,
30489        "interfaces": [],
30490        "enumValues": null,
30491        "possibleTypes": null
30492      },
30493      {
30494        "kind": "INPUT_OBJECT",
30495        "name": "ServerlessFunctionIdentifierInput",
30496        "description": null,
30497        "fields": null,
30498        "inputFields": [
30499          {
30500            "name": "gitCommitSHA1",
30501            "description": null,
30502            "type": {
30503              "kind": "NON_NULL",
30504              "name": null,
30505              "ofType": {
30506                "kind": "SCALAR",
30507                "name": "String",
30508                "ofType": null
30509              }
30510            },
30511            "defaultValue": null,
30512            "isDeprecated": false,
30513            "deprecationReason": null
30514          }
30515        ],
30516        "interfaces": null,
30517        "enumValues": null,
30518        "possibleTypes": null
30519      },
30520      {
30521        "kind": "OBJECT",
30522        "name": "ServerlessFunctionMutation",
30523        "description": null,
30524        "fields": [
30525          {
30526            "name": "createDeployment",
30527            "description": null,
30528            "args": [
30529              {
30530                "name": "appId",
30531                "description": null,
30532                "type": {
30533                  "kind": "NON_NULL",
30534                  "name": null,
30535                  "ofType": {
30536                    "kind": "SCALAR",
30537                    "name": "ID",
30538                    "ofType": null
30539                  }
30540                },
30541                "defaultValue": null,
30542                "isDeprecated": false,
30543                "deprecationReason": null
30544              },
30545              {
30546                "name": "serverlessFunctionIdentifierInput",
30547                "description": null,
30548                "type": {
30549                  "kind": "NON_NULL",
30550                  "name": null,
30551                  "ofType": {
30552                    "kind": "INPUT_OBJECT",
30553                    "name": "ServerlessFunctionIdentifierInput",
30554                    "ofType": null
30555                  }
30556                },
30557                "defaultValue": null,
30558                "isDeprecated": false,
30559                "deprecationReason": null
30560              }
30561            ],
30562            "type": {
30563              "kind": "NON_NULL",
30564              "name": null,
30565              "ofType": {
30566                "kind": "OBJECT",
30567                "name": "DeployServerlessFunctionResult",
30568                "ofType": null
30569              }
30570            },
30571            "isDeprecated": false,
30572            "deprecationReason": null
30573          },
30574          {
30575            "name": "createUploadPresignedUrl",
30576            "description": null,
30577            "args": [
30578              {
30579                "name": "appId",
30580                "description": null,
30581                "type": {
30582                  "kind": "NON_NULL",
30583                  "name": null,
30584                  "ofType": {
30585                    "kind": "SCALAR",
30586                    "name": "ID",
30587                    "ofType": null
30588                  }
30589                },
30590                "defaultValue": null,
30591                "isDeprecated": false,
30592                "deprecationReason": null
30593              },
30594              {
30595                "name": "serverlessFunctionIdentifierInput",
30596                "description": null,
30597                "type": {
30598                  "kind": "NON_NULL",
30599                  "name": null,
30600                  "ofType": {
30601                    "kind": "INPUT_OBJECT",
30602                    "name": "ServerlessFunctionIdentifierInput",
30603                    "ofType": null
30604                  }
30605                },
30606                "defaultValue": null,
30607                "isDeprecated": false,
30608                "deprecationReason": null
30609              }
30610            ],
30611            "type": {
30612              "kind": "NON_NULL",
30613              "name": null,
30614              "ofType": {
30615                "kind": "OBJECT",
30616                "name": "CreateServerlessFunctionUploadUrlResult",
30617                "ofType": null
30618              }
30619            },
30620            "isDeprecated": false,
30621            "deprecationReason": null
30622          }
30623        ],
30624        "inputFields": null,
30625        "interfaces": [],
30626        "enumValues": null,
30627        "possibleTypes": null
30628      },
30629      {
30630        "kind": "OBJECT",
30631        "name": "Snack",
30632        "description": null,
30633        "fields": [
30634          {
30635            "name": "description",
30636            "description": "Description of the Snack",
30637            "args": [],
30638            "type": {
30639              "kind": "NON_NULL",
30640              "name": null,
30641              "ofType": {
30642                "kind": "SCALAR",
30643                "name": "String",
30644                "ofType": null
30645              }
30646            },
30647            "isDeprecated": false,
30648            "deprecationReason": null
30649          },
30650          {
30651            "name": "fullName",
30652            "description": "Full name of the Snack, e.g. \"@john/mysnack\", \"@snack/245631\"",
30653            "args": [],
30654            "type": {
30655              "kind": "NON_NULL",
30656              "name": null,
30657              "ofType": {
30658                "kind": "SCALAR",
30659                "name": "String",
30660                "ofType": null
30661              }
30662            },
30663            "isDeprecated": false,
30664            "deprecationReason": null
30665          },
30666          {
30667            "name": "hasBeenRunSuccessfully",
30668            "description": "Has the Snack been run without errors",
30669            "args": [],
30670            "type": {
30671              "kind": "SCALAR",
30672              "name": "Boolean",
30673              "ofType": null
30674            },
30675            "isDeprecated": false,
30676            "deprecationReason": null
30677          },
30678          {
30679            "name": "hashId",
30680            "description": null,
30681            "args": [],
30682            "type": {
30683              "kind": "NON_NULL",
30684              "name": null,
30685              "ofType": {
30686                "kind": "SCALAR",
30687                "name": "String",
30688                "ofType": null
30689              }
30690            },
30691            "isDeprecated": false,
30692            "deprecationReason": null
30693          },
30694          {
30695            "name": "iconUrl",
30696            "description": null,
30697            "args": [],
30698            "type": {
30699              "kind": "SCALAR",
30700              "name": "String",
30701              "ofType": null
30702            },
30703            "isDeprecated": true,
30704            "deprecationReason": "No longer supported"
30705          },
30706          {
30707            "name": "id",
30708            "description": null,
30709            "args": [],
30710            "type": {
30711              "kind": "NON_NULL",
30712              "name": null,
30713              "ofType": {
30714                "kind": "SCALAR",
30715                "name": "ID",
30716                "ofType": null
30717              }
30718            },
30719            "isDeprecated": false,
30720            "deprecationReason": null
30721          },
30722          {
30723            "name": "isDraft",
30724            "description": "Draft status, which is true when the Snack was not saved explicitly, but auto-saved",
30725            "args": [],
30726            "type": {
30727              "kind": "NON_NULL",
30728              "name": null,
30729              "ofType": {
30730                "kind": "SCALAR",
30731                "name": "Boolean",
30732                "ofType": null
30733              }
30734            },
30735            "isDeprecated": false,
30736            "deprecationReason": null
30737          },
30738          {
30739            "name": "name",
30740            "description": "Name of the Snack, e.g. \"My Snack\"",
30741            "args": [],
30742            "type": {
30743              "kind": "NON_NULL",
30744              "name": null,
30745              "ofType": {
30746                "kind": "SCALAR",
30747                "name": "String",
30748                "ofType": null
30749              }
30750            },
30751            "isDeprecated": false,
30752            "deprecationReason": null
30753          },
30754          {
30755            "name": "previewImage",
30756            "description": "Preview image of the running snack",
30757            "args": [],
30758            "type": {
30759              "kind": "SCALAR",
30760              "name": "String",
30761              "ofType": null
30762            },
30763            "isDeprecated": false,
30764            "deprecationReason": null
30765          },
30766          {
30767            "name": "published",
30768            "description": null,
30769            "args": [],
30770            "type": {
30771              "kind": "NON_NULL",
30772              "name": null,
30773              "ofType": {
30774                "kind": "SCALAR",
30775                "name": "Boolean",
30776                "ofType": null
30777              }
30778            },
30779            "isDeprecated": false,
30780            "deprecationReason": null
30781          },
30782          {
30783            "name": "slug",
30784            "description": "Slug name, e.g. \"mysnack\", \"245631\"",
30785            "args": [],
30786            "type": {
30787              "kind": "NON_NULL",
30788              "name": null,
30789              "ofType": {
30790                "kind": "SCALAR",
30791                "name": "String",
30792                "ofType": null
30793              }
30794            },
30795            "isDeprecated": false,
30796            "deprecationReason": null
30797          },
30798          {
30799            "name": "updated",
30800            "description": "Date and time the Snack was last updated",
30801            "args": [],
30802            "type": {
30803              "kind": "NON_NULL",
30804              "name": null,
30805              "ofType": {
30806                "kind": "SCALAR",
30807                "name": "DateTime",
30808                "ofType": null
30809              }
30810            },
30811            "isDeprecated": false,
30812            "deprecationReason": null
30813          },
30814          {
30815            "name": "username",
30816            "description": "Name of the user that created the Snack, or \"snack\" when the Snack was saved anonymously",
30817            "args": [],
30818            "type": {
30819              "kind": "NON_NULL",
30820              "name": null,
30821              "ofType": {
30822                "kind": "SCALAR",
30823                "name": "String",
30824                "ofType": null
30825              }
30826            },
30827            "isDeprecated": false,
30828            "deprecationReason": null
30829          }
30830        ],
30831        "inputFields": null,
30832        "interfaces": [
30833          {
30834            "kind": "INTERFACE",
30835            "name": "Project",
30836            "ofType": null
30837          }
30838        ],
30839        "enumValues": null,
30840        "possibleTypes": null
30841      },
30842      {
30843        "kind": "OBJECT",
30844        "name": "SnackQuery",
30845        "description": null,
30846        "fields": [
30847          {
30848            "name": "byHashId",
30849            "description": "Get snack by hashId",
30850            "args": [
30851              {
30852                "name": "hashId",
30853                "description": null,
30854                "type": {
30855                  "kind": "NON_NULL",
30856                  "name": null,
30857                  "ofType": {
30858                    "kind": "SCALAR",
30859                    "name": "ID",
30860                    "ofType": null
30861                  }
30862                },
30863                "defaultValue": null,
30864                "isDeprecated": false,
30865                "deprecationReason": null
30866              }
30867            ],
30868            "type": {
30869              "kind": "NON_NULL",
30870              "name": null,
30871              "ofType": {
30872                "kind": "OBJECT",
30873                "name": "Snack",
30874                "ofType": null
30875              }
30876            },
30877            "isDeprecated": false,
30878            "deprecationReason": null
30879          },
30880          {
30881            "name": "byId",
30882            "description": "Get snack by hashId",
30883            "args": [
30884              {
30885                "name": "id",
30886                "description": null,
30887                "type": {
30888                  "kind": "NON_NULL",
30889                  "name": null,
30890                  "ofType": {
30891                    "kind": "SCALAR",
30892                    "name": "ID",
30893                    "ofType": null
30894                  }
30895                },
30896                "defaultValue": null,
30897                "isDeprecated": false,
30898                "deprecationReason": null
30899              }
30900            ],
30901            "type": {
30902              "kind": "NON_NULL",
30903              "name": null,
30904              "ofType": {
30905                "kind": "OBJECT",
30906                "name": "Snack",
30907                "ofType": null
30908              }
30909            },
30910            "isDeprecated": true,
30911            "deprecationReason": "Use byHashId"
30912          }
30913        ],
30914        "inputFields": null,
30915        "interfaces": [],
30916        "enumValues": null,
30917        "possibleTypes": null
30918      },
30919      {
30920        "kind": "ENUM",
30921        "name": "StandardOffer",
30922        "description": null,
30923        "fields": null,
30924        "inputFields": null,
30925        "interfaces": null,
30926        "enumValues": [
30927          {
30928            "name": "DEFAULT",
30929            "description": "$29 USD per month, 30 day trial",
30930            "isDeprecated": false,
30931            "deprecationReason": null
30932          },
30933          {
30934            "name": "SUPPORT",
30935            "description": "$800 USD per month",
30936            "isDeprecated": false,
30937            "deprecationReason": null
30938          },
30939          {
30940            "name": "YC_DEALS",
30941            "description": "$29 USD per month, 1 year trial",
30942            "isDeprecated": false,
30943            "deprecationReason": null
30944          },
30945          {
30946            "name": "YEARLY_SUB",
30947            "description": "$348 USD per year, 30 day trial",
30948            "isDeprecated": false,
30949            "deprecationReason": null
30950          }
30951        ],
30952        "possibleTypes": null
30953      },
30954      {
30955        "kind": "OBJECT",
30956        "name": "StatuspageIncident",
30957        "description": "Incident for a given component from Expo status page API.",
30958        "fields": [
30959          {
30960            "name": "createdAt",
30961            "description": null,
30962            "args": [],
30963            "type": {
30964              "kind": "NON_NULL",
30965              "name": null,
30966              "ofType": {
30967                "kind": "SCALAR",
30968                "name": "DateTime",
30969                "ofType": null
30970              }
30971            },
30972            "isDeprecated": false,
30973            "deprecationReason": null
30974          },
30975          {
30976            "name": "id",
30977            "description": null,
30978            "args": [],
30979            "type": {
30980              "kind": "NON_NULL",
30981              "name": null,
30982              "ofType": {
30983                "kind": "SCALAR",
30984                "name": "ID",
30985                "ofType": null
30986              }
30987            },
30988            "isDeprecated": false,
30989            "deprecationReason": null
30990          },
30991          {
30992            "name": "impact",
30993            "description": "Impact of an incident from Expo status page.",
30994            "args": [],
30995            "type": {
30996              "kind": "NON_NULL",
30997              "name": null,
30998              "ofType": {
30999                "kind": "ENUM",
31000                "name": "StatuspageIncidentImpact",
31001                "ofType": null
31002              }
31003            },
31004            "isDeprecated": false,
31005            "deprecationReason": null
31006          },
31007          {
31008            "name": "name",
31009            "description": null,
31010            "args": [],
31011            "type": {
31012              "kind": "NON_NULL",
31013              "name": null,
31014              "ofType": {
31015                "kind": "SCALAR",
31016                "name": "String",
31017                "ofType": null
31018              }
31019            },
31020            "isDeprecated": false,
31021            "deprecationReason": null
31022          },
31023          {
31024            "name": "resolvedAt",
31025            "description": null,
31026            "args": [],
31027            "type": {
31028              "kind": "SCALAR",
31029              "name": "DateTime",
31030              "ofType": null
31031            },
31032            "isDeprecated": false,
31033            "deprecationReason": null
31034          },
31035          {
31036            "name": "shortlink",
31037            "description": "Shortlink to the incident from Expo status page.",
31038            "args": [],
31039            "type": {
31040              "kind": "NON_NULL",
31041              "name": null,
31042              "ofType": {
31043                "kind": "SCALAR",
31044                "name": "String",
31045                "ofType": null
31046              }
31047            },
31048            "isDeprecated": false,
31049            "deprecationReason": null
31050          },
31051          {
31052            "name": "status",
31053            "description": "Current status of an incident from Expo status page.",
31054            "args": [],
31055            "type": {
31056              "kind": "NON_NULL",
31057              "name": null,
31058              "ofType": {
31059                "kind": "ENUM",
31060                "name": "StatuspageIncidentStatus",
31061                "ofType": null
31062              }
31063            },
31064            "isDeprecated": false,
31065            "deprecationReason": null
31066          },
31067          {
31068            "name": "updatedAt",
31069            "description": null,
31070            "args": [],
31071            "type": {
31072              "kind": "NON_NULL",
31073              "name": null,
31074              "ofType": {
31075                "kind": "SCALAR",
31076                "name": "DateTime",
31077                "ofType": null
31078              }
31079            },
31080            "isDeprecated": false,
31081            "deprecationReason": null
31082          },
31083          {
31084            "name": "updates",
31085            "description": "List of all updates for an incident from Expo status page.",
31086            "args": [],
31087            "type": {
31088              "kind": "NON_NULL",
31089              "name": null,
31090              "ofType": {
31091                "kind": "LIST",
31092                "name": null,
31093                "ofType": {
31094                  "kind": "NON_NULL",
31095                  "name": null,
31096                  "ofType": {
31097                    "kind": "OBJECT",
31098                    "name": "StatuspageIncidentUpdate",
31099                    "ofType": null
31100                  }
31101                }
31102              }
31103            },
31104            "isDeprecated": false,
31105            "deprecationReason": null
31106          }
31107        ],
31108        "inputFields": null,
31109        "interfaces": [],
31110        "enumValues": null,
31111        "possibleTypes": null
31112      },
31113      {
31114        "kind": "ENUM",
31115        "name": "StatuspageIncidentImpact",
31116        "description": "Possible Incident impact values from Expo status page API.",
31117        "fields": null,
31118        "inputFields": null,
31119        "interfaces": null,
31120        "enumValues": [
31121          {
31122            "name": "CRITICAL",
31123            "description": null,
31124            "isDeprecated": false,
31125            "deprecationReason": null
31126          },
31127          {
31128            "name": "MAINTENANCE",
31129            "description": null,
31130            "isDeprecated": false,
31131            "deprecationReason": null
31132          },
31133          {
31134            "name": "MAJOR",
31135            "description": null,
31136            "isDeprecated": false,
31137            "deprecationReason": null
31138          },
31139          {
31140            "name": "MINOR",
31141            "description": null,
31142            "isDeprecated": false,
31143            "deprecationReason": null
31144          },
31145          {
31146            "name": "NONE",
31147            "description": null,
31148            "isDeprecated": false,
31149            "deprecationReason": null
31150          }
31151        ],
31152        "possibleTypes": null
31153      },
31154      {
31155        "kind": "ENUM",
31156        "name": "StatuspageIncidentStatus",
31157        "description": "Possible Incident statuses from Expo status page API.",
31158        "fields": null,
31159        "inputFields": null,
31160        "interfaces": null,
31161        "enumValues": [
31162          {
31163            "name": "COMPLETED",
31164            "description": null,
31165            "isDeprecated": false,
31166            "deprecationReason": null
31167          },
31168          {
31169            "name": "IDENTIFIED",
31170            "description": null,
31171            "isDeprecated": false,
31172            "deprecationReason": null
31173          },
31174          {
31175            "name": "INVESTIGATING",
31176            "description": null,
31177            "isDeprecated": false,
31178            "deprecationReason": null
31179          },
31180          {
31181            "name": "IN_PROGRESS",
31182            "description": null,
31183            "isDeprecated": false,
31184            "deprecationReason": null
31185          },
31186          {
31187            "name": "MONITORING",
31188            "description": null,
31189            "isDeprecated": false,
31190            "deprecationReason": null
31191          },
31192          {
31193            "name": "RESOLVED",
31194            "description": null,
31195            "isDeprecated": false,
31196            "deprecationReason": null
31197          },
31198          {
31199            "name": "SCHEDULED",
31200            "description": null,
31201            "isDeprecated": false,
31202            "deprecationReason": null
31203          },
31204          {
31205            "name": "VERIFYING",
31206            "description": null,
31207            "isDeprecated": false,
31208            "deprecationReason": null
31209          }
31210        ],
31211        "possibleTypes": null
31212      },
31213      {
31214        "kind": "OBJECT",
31215        "name": "StatuspageIncidentUpdate",
31216        "description": "Update for an Incident from Expo status page API.",
31217        "fields": [
31218          {
31219            "name": "body",
31220            "description": "Text of an update from Expo status page.",
31221            "args": [],
31222            "type": {
31223              "kind": "NON_NULL",
31224              "name": null,
31225              "ofType": {
31226                "kind": "SCALAR",
31227                "name": "String",
31228                "ofType": null
31229              }
31230            },
31231            "isDeprecated": false,
31232            "deprecationReason": null
31233          },
31234          {
31235            "name": "createdAt",
31236            "description": null,
31237            "args": [],
31238            "type": {
31239              "kind": "NON_NULL",
31240              "name": null,
31241              "ofType": {
31242                "kind": "SCALAR",
31243                "name": "DateTime",
31244                "ofType": null
31245              }
31246            },
31247            "isDeprecated": false,
31248            "deprecationReason": null
31249          },
31250          {
31251            "name": "id",
31252            "description": null,
31253            "args": [],
31254            "type": {
31255              "kind": "NON_NULL",
31256              "name": null,
31257              "ofType": {
31258                "kind": "SCALAR",
31259                "name": "ID",
31260                "ofType": null
31261              }
31262            },
31263            "isDeprecated": false,
31264            "deprecationReason": null
31265          },
31266          {
31267            "name": "status",
31268            "description": "Status set at the moment of update.",
31269            "args": [],
31270            "type": {
31271              "kind": "NON_NULL",
31272              "name": null,
31273              "ofType": {
31274                "kind": "ENUM",
31275                "name": "StatuspageIncidentStatus",
31276                "ofType": null
31277              }
31278            },
31279            "isDeprecated": false,
31280            "deprecationReason": null
31281          }
31282        ],
31283        "inputFields": null,
31284        "interfaces": [],
31285        "enumValues": null,
31286        "possibleTypes": null
31287      },
31288      {
31289        "kind": "OBJECT",
31290        "name": "StatuspageService",
31291        "description": "Service monitored by Expo status page.",
31292        "fields": [
31293          {
31294            "name": "description",
31295            "description": "Description of a service from Expo status page.",
31296            "args": [],
31297            "type": {
31298              "kind": "SCALAR",
31299              "name": "String",
31300              "ofType": null
31301            },
31302            "isDeprecated": false,
31303            "deprecationReason": null
31304          },
31305          {
31306            "name": "id",
31307            "description": null,
31308            "args": [],
31309            "type": {
31310              "kind": "NON_NULL",
31311              "name": null,
31312              "ofType": {
31313                "kind": "SCALAR",
31314                "name": "ID",
31315                "ofType": null
31316              }
31317            },
31318            "isDeprecated": false,
31319            "deprecationReason": null
31320          },
31321          {
31322            "name": "incidents",
31323            "description": "List of last inicdents for a service from Expo status page (we always query for 50 latest incidents for all services)\nsorted by createdAt field in descending order.",
31324            "args": [],
31325            "type": {
31326              "kind": "NON_NULL",
31327              "name": null,
31328              "ofType": {
31329                "kind": "LIST",
31330                "name": null,
31331                "ofType": {
31332                  "kind": "NON_NULL",
31333                  "name": null,
31334                  "ofType": {
31335                    "kind": "OBJECT",
31336                    "name": "StatuspageIncident",
31337                    "ofType": null
31338                  }
31339                }
31340              }
31341            },
31342            "isDeprecated": false,
31343            "deprecationReason": null
31344          },
31345          {
31346            "name": "name",
31347            "description": "Name of a service monitored by Expo status page.",
31348            "args": [],
31349            "type": {
31350              "kind": "NON_NULL",
31351              "name": null,
31352              "ofType": {
31353                "kind": "ENUM",
31354                "name": "StatuspageServiceName",
31355                "ofType": null
31356              }
31357            },
31358            "isDeprecated": false,
31359            "deprecationReason": null
31360          },
31361          {
31362            "name": "status",
31363            "description": "Current status of a service from Expo status page.",
31364            "args": [],
31365            "type": {
31366              "kind": "NON_NULL",
31367              "name": null,
31368              "ofType": {
31369                "kind": "ENUM",
31370                "name": "StatuspageServiceStatus",
31371                "ofType": null
31372              }
31373            },
31374            "isDeprecated": false,
31375            "deprecationReason": null
31376          }
31377        ],
31378        "inputFields": null,
31379        "interfaces": [],
31380        "enumValues": null,
31381        "possibleTypes": null
31382      },
31383      {
31384        "kind": "ENUM",
31385        "name": "StatuspageServiceName",
31386        "description": "Name of a service monitored by Expo status page.",
31387        "fields": null,
31388        "inputFields": null,
31389        "interfaces": null,
31390        "enumValues": [
31391          {
31392            "name": "EAS_BUILD",
31393            "description": null,
31394            "isDeprecated": false,
31395            "deprecationReason": null
31396          },
31397          {
31398            "name": "EAS_SUBMIT",
31399            "description": null,
31400            "isDeprecated": false,
31401            "deprecationReason": null
31402          },
31403          {
31404            "name": "EAS_UPDATE",
31405            "description": null,
31406            "isDeprecated": false,
31407            "deprecationReason": null
31408          }
31409        ],
31410        "possibleTypes": null
31411      },
31412      {
31413        "kind": "OBJECT",
31414        "name": "StatuspageServiceQuery",
31415        "description": null,
31416        "fields": [
31417          {
31418            "name": "byServiceNames",
31419            "description": "Query services from Expo status page by names.",
31420            "args": [
31421              {
31422                "name": "serviceNames",
31423                "description": "Service names to use to look up components.",
31424                "type": {
31425                  "kind": "NON_NULL",
31426                  "name": null,
31427                  "ofType": {
31428                    "kind": "LIST",
31429                    "name": null,
31430                    "ofType": {
31431                      "kind": "NON_NULL",
31432                      "name": null,
31433                      "ofType": {
31434                        "kind": "ENUM",
31435                        "name": "StatuspageServiceName",
31436                        "ofType": null
31437                      }
31438                    }
31439                  }
31440                },
31441                "defaultValue": null,
31442                "isDeprecated": false,
31443                "deprecationReason": null
31444              }
31445            ],
31446            "type": {
31447              "kind": "NON_NULL",
31448              "name": null,
31449              "ofType": {
31450                "kind": "LIST",
31451                "name": null,
31452                "ofType": {
31453                  "kind": "NON_NULL",
31454                  "name": null,
31455                  "ofType": {
31456                    "kind": "OBJECT",
31457                    "name": "StatuspageService",
31458                    "ofType": null
31459                  }
31460                }
31461              }
31462            },
31463            "isDeprecated": false,
31464            "deprecationReason": null
31465          }
31466        ],
31467        "inputFields": null,
31468        "interfaces": [],
31469        "enumValues": null,
31470        "possibleTypes": null
31471      },
31472      {
31473        "kind": "ENUM",
31474        "name": "StatuspageServiceStatus",
31475        "description": "Possible statuses for a service.",
31476        "fields": null,
31477        "inputFields": null,
31478        "interfaces": null,
31479        "enumValues": [
31480          {
31481            "name": "DEGRADED_PERFORMANCE",
31482            "description": null,
31483            "isDeprecated": false,
31484            "deprecationReason": null
31485          },
31486          {
31487            "name": "MAJOR_OUTAGE",
31488            "description": null,
31489            "isDeprecated": false,
31490            "deprecationReason": null
31491          },
31492          {
31493            "name": "OPERATIONAL",
31494            "description": null,
31495            "isDeprecated": false,
31496            "deprecationReason": null
31497          },
31498          {
31499            "name": "PARTIAL_OUTAGE",
31500            "description": null,
31501            "isDeprecated": false,
31502            "deprecationReason": null
31503          },
31504          {
31505            "name": "UNDER_MAINTENANCE",
31506            "description": null,
31507            "isDeprecated": false,
31508            "deprecationReason": null
31509          }
31510        ],
31511        "possibleTypes": null
31512      },
31513      {
31514        "kind": "SCALAR",
31515        "name": "String",
31516        "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.",
31517        "fields": null,
31518        "inputFields": null,
31519        "interfaces": null,
31520        "enumValues": null,
31521        "possibleTypes": null
31522      },
31523      {
31524        "kind": "OBJECT",
31525        "name": "StripeCoupon",
31526        "description": null,
31527        "fields": [
31528          {
31529            "name": "amountOff",
31530            "description": null,
31531            "args": [],
31532            "type": {
31533              "kind": "SCALAR",
31534              "name": "String",
31535              "ofType": null
31536            },
31537            "isDeprecated": false,
31538            "deprecationReason": null
31539          },
31540          {
31541            "name": "appliesTo",
31542            "description": null,
31543            "args": [],
31544            "type": {
31545              "kind": "SCALAR",
31546              "name": "String",
31547              "ofType": null
31548            },
31549            "isDeprecated": false,
31550            "deprecationReason": null
31551          },
31552          {
31553            "name": "id",
31554            "description": null,
31555            "args": [],
31556            "type": {
31557              "kind": "NON_NULL",
31558              "name": null,
31559              "ofType": {
31560                "kind": "SCALAR",
31561                "name": "ID",
31562                "ofType": null
31563              }
31564            },
31565            "isDeprecated": false,
31566            "deprecationReason": null
31567          },
31568          {
31569            "name": "name",
31570            "description": null,
31571            "args": [],
31572            "type": {
31573              "kind": "NON_NULL",
31574              "name": null,
31575              "ofType": {
31576                "kind": "SCALAR",
31577                "name": "String",
31578                "ofType": null
31579              }
31580            },
31581            "isDeprecated": false,
31582            "deprecationReason": null
31583          },
31584          {
31585            "name": "percentOff",
31586            "description": null,
31587            "args": [],
31588            "type": {
31589              "kind": "SCALAR",
31590              "name": "Float",
31591              "ofType": null
31592            },
31593            "isDeprecated": false,
31594            "deprecationReason": null
31595          },
31596          {
31597            "name": "valid",
31598            "description": null,
31599            "args": [],
31600            "type": {
31601              "kind": "NON_NULL",
31602              "name": null,
31603              "ofType": {
31604                "kind": "SCALAR",
31605                "name": "Boolean",
31606                "ofType": null
31607              }
31608            },
31609            "isDeprecated": false,
31610            "deprecationReason": null
31611          }
31612        ],
31613        "inputFields": null,
31614        "interfaces": [],
31615        "enumValues": null,
31616        "possibleTypes": null
31617      },
31618      {
31619        "kind": "OBJECT",
31620        "name": "Submission",
31621        "description": "Represents an EAS Submission",
31622        "fields": [
31623          {
31624            "name": "activityTimestamp",
31625            "description": null,
31626            "args": [],
31627            "type": {
31628              "kind": "NON_NULL",
31629              "name": null,
31630              "ofType": {
31631                "kind": "SCALAR",
31632                "name": "DateTime",
31633                "ofType": null
31634              }
31635            },
31636            "isDeprecated": false,
31637            "deprecationReason": null
31638          },
31639          {
31640            "name": "actor",
31641            "description": null,
31642            "args": [],
31643            "type": {
31644              "kind": "INTERFACE",
31645              "name": "Actor",
31646              "ofType": null
31647            },
31648            "isDeprecated": false,
31649            "deprecationReason": null
31650          },
31651          {
31652            "name": "androidConfig",
31653            "description": null,
31654            "args": [],
31655            "type": {
31656              "kind": "OBJECT",
31657              "name": "AndroidSubmissionConfig",
31658              "ofType": null
31659            },
31660            "isDeprecated": false,
31661            "deprecationReason": null
31662          },
31663          {
31664            "name": "app",
31665            "description": null,
31666            "args": [],
31667            "type": {
31668              "kind": "NON_NULL",
31669              "name": null,
31670              "ofType": {
31671                "kind": "OBJECT",
31672                "name": "App",
31673                "ofType": null
31674              }
31675            },
31676            "isDeprecated": false,
31677            "deprecationReason": null
31678          },
31679          {
31680            "name": "archiveUrl",
31681            "description": null,
31682            "args": [],
31683            "type": {
31684              "kind": "SCALAR",
31685              "name": "String",
31686              "ofType": null
31687            },
31688            "isDeprecated": false,
31689            "deprecationReason": null
31690          },
31691          {
31692            "name": "canRetry",
31693            "description": null,
31694            "args": [],
31695            "type": {
31696              "kind": "NON_NULL",
31697              "name": null,
31698              "ofType": {
31699                "kind": "SCALAR",
31700                "name": "Boolean",
31701                "ofType": null
31702              }
31703            },
31704            "isDeprecated": false,
31705            "deprecationReason": null
31706          },
31707          {
31708            "name": "cancelingActor",
31709            "description": null,
31710            "args": [],
31711            "type": {
31712              "kind": "INTERFACE",
31713              "name": "Actor",
31714              "ofType": null
31715            },
31716            "isDeprecated": false,
31717            "deprecationReason": null
31718          },
31719          {
31720            "name": "childSubmission",
31721            "description": null,
31722            "args": [],
31723            "type": {
31724              "kind": "OBJECT",
31725              "name": "Submission",
31726              "ofType": null
31727            },
31728            "isDeprecated": false,
31729            "deprecationReason": null
31730          },
31731          {
31732            "name": "completedAt",
31733            "description": null,
31734            "args": [],
31735            "type": {
31736              "kind": "SCALAR",
31737              "name": "DateTime",
31738              "ofType": null
31739            },
31740            "isDeprecated": false,
31741            "deprecationReason": null
31742          },
31743          {
31744            "name": "createdAt",
31745            "description": null,
31746            "args": [],
31747            "type": {
31748              "kind": "NON_NULL",
31749              "name": null,
31750              "ofType": {
31751                "kind": "SCALAR",
31752                "name": "DateTime",
31753                "ofType": null
31754              }
31755            },
31756            "isDeprecated": false,
31757            "deprecationReason": null
31758          },
31759          {
31760            "name": "error",
31761            "description": null,
31762            "args": [],
31763            "type": {
31764              "kind": "OBJECT",
31765              "name": "SubmissionError",
31766              "ofType": null
31767            },
31768            "isDeprecated": false,
31769            "deprecationReason": null
31770          },
31771          {
31772            "name": "id",
31773            "description": null,
31774            "args": [],
31775            "type": {
31776              "kind": "NON_NULL",
31777              "name": null,
31778              "ofType": {
31779                "kind": "SCALAR",
31780                "name": "ID",
31781                "ofType": null
31782              }
31783            },
31784            "isDeprecated": false,
31785            "deprecationReason": null
31786          },
31787          {
31788            "name": "initiatingActor",
31789            "description": null,
31790            "args": [],
31791            "type": {
31792              "kind": "INTERFACE",
31793              "name": "Actor",
31794              "ofType": null
31795            },
31796            "isDeprecated": false,
31797            "deprecationReason": null
31798          },
31799          {
31800            "name": "iosConfig",
31801            "description": null,
31802            "args": [],
31803            "type": {
31804              "kind": "OBJECT",
31805              "name": "IosSubmissionConfig",
31806              "ofType": null
31807            },
31808            "isDeprecated": false,
31809            "deprecationReason": null
31810          },
31811          {
31812            "name": "logsUrl",
31813            "description": null,
31814            "args": [],
31815            "type": {
31816              "kind": "SCALAR",
31817              "name": "String",
31818              "ofType": null
31819            },
31820            "isDeprecated": false,
31821            "deprecationReason": null
31822          },
31823          {
31824            "name": "maxRetryTimeMinutes",
31825            "description": "Retry time starts after completedAt",
31826            "args": [],
31827            "type": {
31828              "kind": "NON_NULL",
31829              "name": null,
31830              "ofType": {
31831                "kind": "SCALAR",
31832                "name": "Int",
31833                "ofType": null
31834              }
31835            },
31836            "isDeprecated": false,
31837            "deprecationReason": null
31838          },
31839          {
31840            "name": "parentSubmission",
31841            "description": null,
31842            "args": [],
31843            "type": {
31844              "kind": "OBJECT",
31845              "name": "Submission",
31846              "ofType": null
31847            },
31848            "isDeprecated": false,
31849            "deprecationReason": null
31850          },
31851          {
31852            "name": "platform",
31853            "description": null,
31854            "args": [],
31855            "type": {
31856              "kind": "NON_NULL",
31857              "name": null,
31858              "ofType": {
31859                "kind": "ENUM",
31860                "name": "AppPlatform",
31861                "ofType": null
31862              }
31863            },
31864            "isDeprecated": false,
31865            "deprecationReason": null
31866          },
31867          {
31868            "name": "status",
31869            "description": null,
31870            "args": [],
31871            "type": {
31872              "kind": "NON_NULL",
31873              "name": null,
31874              "ofType": {
31875                "kind": "ENUM",
31876                "name": "SubmissionStatus",
31877                "ofType": null
31878              }
31879            },
31880            "isDeprecated": false,
31881            "deprecationReason": null
31882          },
31883          {
31884            "name": "submittedBuild",
31885            "description": null,
31886            "args": [],
31887            "type": {
31888              "kind": "OBJECT",
31889              "name": "Build",
31890              "ofType": null
31891            },
31892            "isDeprecated": false,
31893            "deprecationReason": null
31894          },
31895          {
31896            "name": "updatedAt",
31897            "description": null,
31898            "args": [],
31899            "type": {
31900              "kind": "NON_NULL",
31901              "name": null,
31902              "ofType": {
31903                "kind": "SCALAR",
31904                "name": "DateTime",
31905                "ofType": null
31906              }
31907            },
31908            "isDeprecated": false,
31909            "deprecationReason": null
31910          }
31911        ],
31912        "inputFields": null,
31913        "interfaces": [
31914          {
31915            "kind": "INTERFACE",
31916            "name": "ActivityTimelineProjectActivity",
31917            "ofType": null
31918          }
31919        ],
31920        "enumValues": null,
31921        "possibleTypes": null
31922      },
31923      {
31924        "kind": "ENUM",
31925        "name": "SubmissionAndroidArchiveType",
31926        "description": null,
31927        "fields": null,
31928        "inputFields": null,
31929        "interfaces": null,
31930        "enumValues": [
31931          {
31932            "name": "AAB",
31933            "description": null,
31934            "isDeprecated": false,
31935            "deprecationReason": null
31936          },
31937          {
31938            "name": "APK",
31939            "description": null,
31940            "isDeprecated": false,
31941            "deprecationReason": null
31942          }
31943        ],
31944        "possibleTypes": null
31945      },
31946      {
31947        "kind": "ENUM",
31948        "name": "SubmissionAndroidReleaseStatus",
31949        "description": null,
31950        "fields": null,
31951        "inputFields": null,
31952        "interfaces": null,
31953        "enumValues": [
31954          {
31955            "name": "COMPLETED",
31956            "description": null,
31957            "isDeprecated": false,
31958            "deprecationReason": null
31959          },
31960          {
31961            "name": "DRAFT",
31962            "description": null,
31963            "isDeprecated": false,
31964            "deprecationReason": null
31965          },
31966          {
31967            "name": "HALTED",
31968            "description": null,
31969            "isDeprecated": false,
31970            "deprecationReason": null
31971          },
31972          {
31973            "name": "IN_PROGRESS",
31974            "description": null,
31975            "isDeprecated": false,
31976            "deprecationReason": null
31977          }
31978        ],
31979        "possibleTypes": null
31980      },
31981      {
31982        "kind": "ENUM",
31983        "name": "SubmissionAndroidTrack",
31984        "description": null,
31985        "fields": null,
31986        "inputFields": null,
31987        "interfaces": null,
31988        "enumValues": [
31989          {
31990            "name": "ALPHA",
31991            "description": null,
31992            "isDeprecated": false,
31993            "deprecationReason": null
31994          },
31995          {
31996            "name": "BETA",
31997            "description": null,
31998            "isDeprecated": false,
31999            "deprecationReason": null
32000          },
32001          {
32002            "name": "INTERNAL",
32003            "description": null,
32004            "isDeprecated": false,
32005            "deprecationReason": null
32006          },
32007          {
32008            "name": "PRODUCTION",
32009            "description": null,
32010            "isDeprecated": false,
32011            "deprecationReason": null
32012          }
32013        ],
32014        "possibleTypes": null
32015      },
32016      {
32017        "kind": "INPUT_OBJECT",
32018        "name": "SubmissionArchiveSourceInput",
32019        "description": null,
32020        "fields": null,
32021        "inputFields": [
32022          {
32023            "name": "bucketKey",
32024            "description": "Required if the archive source type is GCS_BUILD_APPLICATION_ARCHIVE or GCS_SUBMIT_ARCHIVE",
32025            "type": {
32026              "kind": "SCALAR",
32027              "name": "String",
32028              "ofType": null
32029            },
32030            "defaultValue": null,
32031            "isDeprecated": false,
32032            "deprecationReason": null
32033          },
32034          {
32035            "name": "type",
32036            "description": null,
32037            "type": {
32038              "kind": "NON_NULL",
32039              "name": null,
32040              "ofType": {
32041                "kind": "ENUM",
32042                "name": "SubmissionArchiveSourceType",
32043                "ofType": null
32044              }
32045            },
32046            "defaultValue": null,
32047            "isDeprecated": false,
32048            "deprecationReason": null
32049          },
32050          {
32051            "name": "url",
32052            "description": "Required if the archive source type is URL",
32053            "type": {
32054              "kind": "SCALAR",
32055              "name": "String",
32056              "ofType": null
32057            },
32058            "defaultValue": null,
32059            "isDeprecated": false,
32060            "deprecationReason": null
32061          }
32062        ],
32063        "interfaces": null,
32064        "enumValues": null,
32065        "possibleTypes": null
32066      },
32067      {
32068        "kind": "ENUM",
32069        "name": "SubmissionArchiveSourceType",
32070        "description": null,
32071        "fields": null,
32072        "inputFields": null,
32073        "interfaces": null,
32074        "enumValues": [
32075          {
32076            "name": "GCS_BUILD_APPLICATION_ARCHIVE",
32077            "description": null,
32078            "isDeprecated": false,
32079            "deprecationReason": null
32080          },
32081          {
32082            "name": "GCS_SUBMIT_ARCHIVE",
32083            "description": null,
32084            "isDeprecated": false,
32085            "deprecationReason": null
32086          },
32087          {
32088            "name": "URL",
32089            "description": null,
32090            "isDeprecated": false,
32091            "deprecationReason": null
32092          }
32093        ],
32094        "possibleTypes": null
32095      },
32096      {
32097        "kind": "OBJECT",
32098        "name": "SubmissionError",
32099        "description": null,
32100        "fields": [
32101          {
32102            "name": "errorCode",
32103            "description": null,
32104            "args": [],
32105            "type": {
32106              "kind": "SCALAR",
32107              "name": "String",
32108              "ofType": null
32109            },
32110            "isDeprecated": false,
32111            "deprecationReason": null
32112          },
32113          {
32114            "name": "message",
32115            "description": null,
32116            "args": [],
32117            "type": {
32118              "kind": "SCALAR",
32119              "name": "String",
32120              "ofType": null
32121            },
32122            "isDeprecated": false,
32123            "deprecationReason": null
32124          }
32125        ],
32126        "inputFields": null,
32127        "interfaces": [],
32128        "enumValues": null,
32129        "possibleTypes": null
32130      },
32131      {
32132        "kind": "INPUT_OBJECT",
32133        "name": "SubmissionFilter",
32134        "description": null,
32135        "fields": null,
32136        "inputFields": [
32137          {
32138            "name": "platform",
32139            "description": null,
32140            "type": {
32141              "kind": "ENUM",
32142              "name": "AppPlatform",
32143              "ofType": null
32144            },
32145            "defaultValue": null,
32146            "isDeprecated": false,
32147            "deprecationReason": null
32148          },
32149          {
32150            "name": "status",
32151            "description": null,
32152            "type": {
32153              "kind": "ENUM",
32154              "name": "SubmissionStatus",
32155              "ofType": null
32156            },
32157            "defaultValue": null,
32158            "isDeprecated": false,
32159            "deprecationReason": null
32160          }
32161        ],
32162        "interfaces": null,
32163        "enumValues": null,
32164        "possibleTypes": null
32165      },
32166      {
32167        "kind": "OBJECT",
32168        "name": "SubmissionMutation",
32169        "description": null,
32170        "fields": [
32171          {
32172            "name": "cancelSubmission",
32173            "description": "Cancel an EAS Submit submission",
32174            "args": [
32175              {
32176                "name": "submissionId",
32177                "description": null,
32178                "type": {
32179                  "kind": "NON_NULL",
32180                  "name": null,
32181                  "ofType": {
32182                    "kind": "SCALAR",
32183                    "name": "ID",
32184                    "ofType": null
32185                  }
32186                },
32187                "defaultValue": null,
32188                "isDeprecated": false,
32189                "deprecationReason": null
32190              }
32191            ],
32192            "type": {
32193              "kind": "NON_NULL",
32194              "name": null,
32195              "ofType": {
32196                "kind": "OBJECT",
32197                "name": "Submission",
32198                "ofType": null
32199              }
32200            },
32201            "isDeprecated": false,
32202            "deprecationReason": null
32203          },
32204          {
32205            "name": "createAndroidSubmission",
32206            "description": "Create an Android EAS Submit submission",
32207            "args": [
32208              {
32209                "name": "input",
32210                "description": null,
32211                "type": {
32212                  "kind": "NON_NULL",
32213                  "name": null,
32214                  "ofType": {
32215                    "kind": "INPUT_OBJECT",
32216                    "name": "CreateAndroidSubmissionInput",
32217                    "ofType": null
32218                  }
32219                },
32220                "defaultValue": null,
32221                "isDeprecated": false,
32222                "deprecationReason": null
32223              }
32224            ],
32225            "type": {
32226              "kind": "NON_NULL",
32227              "name": null,
32228              "ofType": {
32229                "kind": "OBJECT",
32230                "name": "CreateSubmissionResult",
32231                "ofType": null
32232              }
32233            },
32234            "isDeprecated": false,
32235            "deprecationReason": null
32236          },
32237          {
32238            "name": "createIosSubmission",
32239            "description": "Create an iOS EAS Submit submission",
32240            "args": [
32241              {
32242                "name": "input",
32243                "description": null,
32244                "type": {
32245                  "kind": "NON_NULL",
32246                  "name": null,
32247                  "ofType": {
32248                    "kind": "INPUT_OBJECT",
32249                    "name": "CreateIosSubmissionInput",
32250                    "ofType": null
32251                  }
32252                },
32253                "defaultValue": null,
32254                "isDeprecated": false,
32255                "deprecationReason": null
32256              }
32257            ],
32258            "type": {
32259              "kind": "NON_NULL",
32260              "name": null,
32261              "ofType": {
32262                "kind": "OBJECT",
32263                "name": "CreateSubmissionResult",
32264                "ofType": null
32265              }
32266            },
32267            "isDeprecated": false,
32268            "deprecationReason": null
32269          },
32270          {
32271            "name": "retrySubmission",
32272            "description": "Retry an EAS Submit submission",
32273            "args": [
32274              {
32275                "name": "parentSubmissionId",
32276                "description": null,
32277                "type": {
32278                  "kind": "NON_NULL",
32279                  "name": null,
32280                  "ofType": {
32281                    "kind": "SCALAR",
32282                    "name": "ID",
32283                    "ofType": null
32284                  }
32285                },
32286                "defaultValue": null,
32287                "isDeprecated": false,
32288                "deprecationReason": null
32289              }
32290            ],
32291            "type": {
32292              "kind": "NON_NULL",
32293              "name": null,
32294              "ofType": {
32295                "kind": "OBJECT",
32296                "name": "CreateSubmissionResult",
32297                "ofType": null
32298              }
32299            },
32300            "isDeprecated": false,
32301            "deprecationReason": null
32302          }
32303        ],
32304        "inputFields": null,
32305        "interfaces": [],
32306        "enumValues": null,
32307        "possibleTypes": null
32308      },
32309      {
32310        "kind": "OBJECT",
32311        "name": "SubmissionQuery",
32312        "description": null,
32313        "fields": [
32314          {
32315            "name": "byId",
32316            "description": "Look up EAS Submission by submission ID",
32317            "args": [
32318              {
32319                "name": "submissionId",
32320                "description": null,
32321                "type": {
32322                  "kind": "NON_NULL",
32323                  "name": null,
32324                  "ofType": {
32325                    "kind": "SCALAR",
32326                    "name": "ID",
32327                    "ofType": null
32328                  }
32329                },
32330                "defaultValue": null,
32331                "isDeprecated": false,
32332                "deprecationReason": null
32333              }
32334            ],
32335            "type": {
32336              "kind": "NON_NULL",
32337              "name": null,
32338              "ofType": {
32339                "kind": "OBJECT",
32340                "name": "Submission",
32341                "ofType": null
32342              }
32343            },
32344            "isDeprecated": false,
32345            "deprecationReason": null
32346          }
32347        ],
32348        "inputFields": null,
32349        "interfaces": [],
32350        "enumValues": null,
32351        "possibleTypes": null
32352      },
32353      {
32354        "kind": "ENUM",
32355        "name": "SubmissionStatus",
32356        "description": null,
32357        "fields": null,
32358        "inputFields": null,
32359        "interfaces": null,
32360        "enumValues": [
32361          {
32362            "name": "AWAITING_BUILD",
32363            "description": null,
32364            "isDeprecated": false,
32365            "deprecationReason": null
32366          },
32367          {
32368            "name": "CANCELED",
32369            "description": null,
32370            "isDeprecated": false,
32371            "deprecationReason": null
32372          },
32373          {
32374            "name": "ERRORED",
32375            "description": null,
32376            "isDeprecated": false,
32377            "deprecationReason": null
32378          },
32379          {
32380            "name": "FINISHED",
32381            "description": null,
32382            "isDeprecated": false,
32383            "deprecationReason": null
32384          },
32385          {
32386            "name": "IN_PROGRESS",
32387            "description": null,
32388            "isDeprecated": false,
32389            "deprecationReason": null
32390          },
32391          {
32392            "name": "IN_QUEUE",
32393            "description": null,
32394            "isDeprecated": false,
32395            "deprecationReason": null
32396          }
32397        ],
32398        "possibleTypes": null
32399      },
32400      {
32401        "kind": "OBJECT",
32402        "name": "SubscribeToNotificationResult",
32403        "description": null,
32404        "fields": [
32405          {
32406            "name": "notificationSubscription",
32407            "description": null,
32408            "args": [],
32409            "type": {
32410              "kind": "NON_NULL",
32411              "name": null,
32412              "ofType": {
32413                "kind": "OBJECT",
32414                "name": "NotificationSubscription",
32415                "ofType": null
32416              }
32417            },
32418            "isDeprecated": false,
32419            "deprecationReason": null
32420          }
32421        ],
32422        "inputFields": null,
32423        "interfaces": [],
32424        "enumValues": null,
32425        "possibleTypes": null
32426      },
32427      {
32428        "kind": "OBJECT",
32429        "name": "SubscriptionDetails",
32430        "description": null,
32431        "fields": [
32432          {
32433            "name": "addons",
32434            "description": null,
32435            "args": [],
32436            "type": {
32437              "kind": "NON_NULL",
32438              "name": null,
32439              "ofType": {
32440                "kind": "LIST",
32441                "name": null,
32442                "ofType": {
32443                  "kind": "NON_NULL",
32444                  "name": null,
32445                  "ofType": {
32446                    "kind": "OBJECT",
32447                    "name": "AddonDetails",
32448                    "ofType": null
32449                  }
32450                }
32451              }
32452            },
32453            "isDeprecated": false,
32454            "deprecationReason": null
32455          },
32456          {
32457            "name": "cancelledAt",
32458            "description": null,
32459            "args": [],
32460            "type": {
32461              "kind": "SCALAR",
32462              "name": "DateTime",
32463              "ofType": null
32464            },
32465            "isDeprecated": false,
32466            "deprecationReason": null
32467          },
32468          {
32469            "name": "concurrencies",
32470            "description": null,
32471            "args": [],
32472            "type": {
32473              "kind": "OBJECT",
32474              "name": "Concurrencies",
32475              "ofType": null
32476            },
32477            "isDeprecated": false,
32478            "deprecationReason": null
32479          },
32480          {
32481            "name": "coupon",
32482            "description": null,
32483            "args": [],
32484            "type": {
32485              "kind": "OBJECT",
32486              "name": "StripeCoupon",
32487              "ofType": null
32488            },
32489            "isDeprecated": false,
32490            "deprecationReason": null
32491          },
32492          {
32493            "name": "endedAt",
32494            "description": null,
32495            "args": [],
32496            "type": {
32497              "kind": "SCALAR",
32498              "name": "DateTime",
32499              "ofType": null
32500            },
32501            "isDeprecated": false,
32502            "deprecationReason": null
32503          },
32504          {
32505            "name": "futureSubscription",
32506            "description": null,
32507            "args": [],
32508            "type": {
32509              "kind": "OBJECT",
32510              "name": "FutureSubscription",
32511              "ofType": null
32512            },
32513            "isDeprecated": false,
32514            "deprecationReason": null
32515          },
32516          {
32517            "name": "id",
32518            "description": null,
32519            "args": [],
32520            "type": {
32521              "kind": "NON_NULL",
32522              "name": null,
32523              "ofType": {
32524                "kind": "SCALAR",
32525                "name": "ID",
32526                "ofType": null
32527              }
32528            },
32529            "isDeprecated": false,
32530            "deprecationReason": null
32531          },
32532          {
32533            "name": "isDowngrading",
32534            "description": null,
32535            "args": [],
32536            "type": {
32537              "kind": "SCALAR",
32538              "name": "Boolean",
32539              "ofType": null
32540            },
32541            "isDeprecated": false,
32542            "deprecationReason": null
32543          },
32544          {
32545            "name": "meteredBillingStatus",
32546            "description": null,
32547            "args": [],
32548            "type": {
32549              "kind": "NON_NULL",
32550              "name": null,
32551              "ofType": {
32552                "kind": "OBJECT",
32553                "name": "MeteredBillingStatus",
32554                "ofType": null
32555              }
32556            },
32557            "isDeprecated": false,
32558            "deprecationReason": null
32559          },
32560          {
32561            "name": "name",
32562            "description": null,
32563            "args": [],
32564            "type": {
32565              "kind": "SCALAR",
32566              "name": "String",
32567              "ofType": null
32568            },
32569            "isDeprecated": false,
32570            "deprecationReason": null
32571          },
32572          {
32573            "name": "nextInvoice",
32574            "description": null,
32575            "args": [],
32576            "type": {
32577              "kind": "SCALAR",
32578              "name": "DateTime",
32579              "ofType": null
32580            },
32581            "isDeprecated": false,
32582            "deprecationReason": null
32583          },
32584          {
32585            "name": "planEnablement",
32586            "description": null,
32587            "args": [
32588              {
32589                "name": "serviceMetric",
32590                "description": null,
32591                "type": {
32592                  "kind": "NON_NULL",
32593                  "name": null,
32594                  "ofType": {
32595                    "kind": "ENUM",
32596                    "name": "EASServiceMetric",
32597                    "ofType": null
32598                  }
32599                },
32600                "defaultValue": null,
32601                "isDeprecated": false,
32602                "deprecationReason": null
32603              }
32604            ],
32605            "type": {
32606              "kind": "UNION",
32607              "name": "PlanEnablement",
32608              "ofType": null
32609            },
32610            "isDeprecated": false,
32611            "deprecationReason": null
32612          },
32613          {
32614            "name": "planId",
32615            "description": null,
32616            "args": [],
32617            "type": {
32618              "kind": "SCALAR",
32619              "name": "String",
32620              "ofType": null
32621            },
32622            "isDeprecated": false,
32623            "deprecationReason": null
32624          },
32625          {
32626            "name": "price",
32627            "description": null,
32628            "args": [],
32629            "type": {
32630              "kind": "NON_NULL",
32631              "name": null,
32632              "ofType": {
32633                "kind": "SCALAR",
32634                "name": "Int",
32635                "ofType": null
32636              }
32637            },
32638            "isDeprecated": false,
32639            "deprecationReason": null
32640          },
32641          {
32642            "name": "status",
32643            "description": null,
32644            "args": [],
32645            "type": {
32646              "kind": "SCALAR",
32647              "name": "String",
32648              "ofType": null
32649            },
32650            "isDeprecated": false,
32651            "deprecationReason": null
32652          },
32653          {
32654            "name": "trialEnd",
32655            "description": null,
32656            "args": [],
32657            "type": {
32658              "kind": "SCALAR",
32659              "name": "DateTime",
32660              "ofType": null
32661            },
32662            "isDeprecated": false,
32663            "deprecationReason": null
32664          },
32665          {
32666            "name": "willCancel",
32667            "description": null,
32668            "args": [],
32669            "type": {
32670              "kind": "SCALAR",
32671              "name": "Boolean",
32672              "ofType": null
32673            },
32674            "isDeprecated": false,
32675            "deprecationReason": null
32676          }
32677        ],
32678        "inputFields": null,
32679        "interfaces": [],
32680        "enumValues": null,
32681        "possibleTypes": null
32682      },
32683      {
32684        "kind": "OBJECT",
32685        "name": "TimelineActivityConnection",
32686        "description": null,
32687        "fields": [
32688          {
32689            "name": "edges",
32690            "description": null,
32691            "args": [],
32692            "type": {
32693              "kind": "NON_NULL",
32694              "name": null,
32695              "ofType": {
32696                "kind": "LIST",
32697                "name": null,
32698                "ofType": {
32699                  "kind": "NON_NULL",
32700                  "name": null,
32701                  "ofType": {
32702                    "kind": "OBJECT",
32703                    "name": "TimelineActivityEdge",
32704                    "ofType": null
32705                  }
32706                }
32707              }
32708            },
32709            "isDeprecated": false,
32710            "deprecationReason": null
32711          },
32712          {
32713            "name": "pageInfo",
32714            "description": null,
32715            "args": [],
32716            "type": {
32717              "kind": "NON_NULL",
32718              "name": null,
32719              "ofType": {
32720                "kind": "OBJECT",
32721                "name": "PageInfo",
32722                "ofType": null
32723              }
32724            },
32725            "isDeprecated": false,
32726            "deprecationReason": null
32727          }
32728        ],
32729        "inputFields": null,
32730        "interfaces": [],
32731        "enumValues": null,
32732        "possibleTypes": null
32733      },
32734      {
32735        "kind": "OBJECT",
32736        "name": "TimelineActivityEdge",
32737        "description": null,
32738        "fields": [
32739          {
32740            "name": "cursor",
32741            "description": null,
32742            "args": [],
32743            "type": {
32744              "kind": "NON_NULL",
32745              "name": null,
32746              "ofType": {
32747                "kind": "SCALAR",
32748                "name": "String",
32749                "ofType": null
32750              }
32751            },
32752            "isDeprecated": false,
32753            "deprecationReason": null
32754          },
32755          {
32756            "name": "node",
32757            "description": null,
32758            "args": [],
32759            "type": {
32760              "kind": "NON_NULL",
32761              "name": null,
32762              "ofType": {
32763                "kind": "INTERFACE",
32764                "name": "ActivityTimelineProjectActivity",
32765                "ofType": null
32766              }
32767            },
32768            "isDeprecated": false,
32769            "deprecationReason": null
32770          }
32771        ],
32772        "inputFields": null,
32773        "interfaces": [],
32774        "enumValues": null,
32775        "possibleTypes": null
32776      },
32777      {
32778        "kind": "INPUT_OBJECT",
32779        "name": "TimelineActivityFilterInput",
32780        "description": null,
32781        "fields": null,
32782        "inputFields": [
32783          {
32784            "name": "channels",
32785            "description": null,
32786            "type": {
32787              "kind": "LIST",
32788              "name": null,
32789              "ofType": {
32790                "kind": "NON_NULL",
32791                "name": null,
32792                "ofType": {
32793                  "kind": "SCALAR",
32794                  "name": "String",
32795                  "ofType": null
32796                }
32797              }
32798            },
32799            "defaultValue": null,
32800            "isDeprecated": false,
32801            "deprecationReason": null
32802          },
32803          {
32804            "name": "platforms",
32805            "description": null,
32806            "type": {
32807              "kind": "LIST",
32808              "name": null,
32809              "ofType": {
32810                "kind": "NON_NULL",
32811                "name": null,
32812                "ofType": {
32813                  "kind": "ENUM",
32814                  "name": "AppPlatform",
32815                  "ofType": null
32816                }
32817              }
32818            },
32819            "defaultValue": null,
32820            "isDeprecated": false,
32821            "deprecationReason": null
32822          },
32823          {
32824            "name": "releaseChannels",
32825            "description": null,
32826            "type": {
32827              "kind": "LIST",
32828              "name": null,
32829              "ofType": {
32830                "kind": "NON_NULL",
32831                "name": null,
32832                "ofType": {
32833                  "kind": "SCALAR",
32834                  "name": "String",
32835                  "ofType": null
32836                }
32837              }
32838            },
32839            "defaultValue": null,
32840            "isDeprecated": false,
32841            "deprecationReason": null
32842          },
32843          {
32844            "name": "types",
32845            "description": null,
32846            "type": {
32847              "kind": "LIST",
32848              "name": null,
32849              "ofType": {
32850                "kind": "NON_NULL",
32851                "name": null,
32852                "ofType": {
32853                  "kind": "ENUM",
32854                  "name": "ActivityTimelineProjectActivityType",
32855                  "ofType": null
32856                }
32857              }
32858            },
32859            "defaultValue": null,
32860            "isDeprecated": false,
32861            "deprecationReason": null
32862          }
32863        ],
32864        "interfaces": null,
32865        "enumValues": null,
32866        "possibleTypes": null
32867      },
32868      {
32869        "kind": "OBJECT",
32870        "name": "UniqueUsersOverTimeData",
32871        "description": null,
32872        "fields": [
32873          {
32874            "name": "data",
32875            "description": null,
32876            "args": [],
32877            "type": {
32878              "kind": "NON_NULL",
32879              "name": null,
32880              "ofType": {
32881                "kind": "OBJECT",
32882                "name": "LineChartData",
32883                "ofType": null
32884              }
32885            },
32886            "isDeprecated": false,
32887            "deprecationReason": null
32888          }
32889        ],
32890        "inputFields": null,
32891        "interfaces": [],
32892        "enumValues": null,
32893        "possibleTypes": null
32894      },
32895      {
32896        "kind": "OBJECT",
32897        "name": "UnsubscribeFromNotificationResult",
32898        "description": null,
32899        "fields": [
32900          {
32901            "name": "notificationSubscription",
32902            "description": null,
32903            "args": [],
32904            "type": {
32905              "kind": "NON_NULL",
32906              "name": null,
32907              "ofType": {
32908                "kind": "OBJECT",
32909                "name": "NotificationSubscription",
32910                "ofType": null
32911              }
32912            },
32913            "isDeprecated": false,
32914            "deprecationReason": null
32915          }
32916        ],
32917        "inputFields": null,
32918        "interfaces": [],
32919        "enumValues": null,
32920        "possibleTypes": null
32921      },
32922      {
32923        "kind": "OBJECT",
32924        "name": "Update",
32925        "description": null,
32926        "fields": [
32927          {
32928            "name": "activityTimestamp",
32929            "description": null,
32930            "args": [],
32931            "type": {
32932              "kind": "NON_NULL",
32933              "name": null,
32934              "ofType": {
32935                "kind": "SCALAR",
32936                "name": "DateTime",
32937                "ofType": null
32938              }
32939            },
32940            "isDeprecated": false,
32941            "deprecationReason": null
32942          },
32943          {
32944            "name": "actor",
32945            "description": null,
32946            "args": [],
32947            "type": {
32948              "kind": "INTERFACE",
32949              "name": "Actor",
32950              "ofType": null
32951            },
32952            "isDeprecated": false,
32953            "deprecationReason": null
32954          },
32955          {
32956            "name": "app",
32957            "description": null,
32958            "args": [],
32959            "type": {
32960              "kind": "NON_NULL",
32961              "name": null,
32962              "ofType": {
32963                "kind": "OBJECT",
32964                "name": "App",
32965                "ofType": null
32966              }
32967            },
32968            "isDeprecated": false,
32969            "deprecationReason": null
32970          },
32971          {
32972            "name": "awaitingCodeSigningInfo",
32973            "description": null,
32974            "args": [],
32975            "type": {
32976              "kind": "NON_NULL",
32977              "name": null,
32978              "ofType": {
32979                "kind": "SCALAR",
32980                "name": "Boolean",
32981                "ofType": null
32982              }
32983            },
32984            "isDeprecated": false,
32985            "deprecationReason": null
32986          },
32987          {
32988            "name": "branch",
32989            "description": null,
32990            "args": [],
32991            "type": {
32992              "kind": "NON_NULL",
32993              "name": null,
32994              "ofType": {
32995                "kind": "OBJECT",
32996                "name": "UpdateBranch",
32997                "ofType": null
32998              }
32999            },
33000            "isDeprecated": false,
33001            "deprecationReason": null
33002          },
33003          {
33004            "name": "branchId",
33005            "description": null,
33006            "args": [],
33007            "type": {
33008              "kind": "NON_NULL",
33009              "name": null,
33010              "ofType": {
33011                "kind": "SCALAR",
33012                "name": "ID",
33013                "ofType": null
33014              }
33015            },
33016            "isDeprecated": false,
33017            "deprecationReason": null
33018          },
33019          {
33020            "name": "codeSigningInfo",
33021            "description": null,
33022            "args": [],
33023            "type": {
33024              "kind": "OBJECT",
33025              "name": "CodeSigningInfo",
33026              "ofType": null
33027            },
33028            "isDeprecated": false,
33029            "deprecationReason": null
33030          },
33031          {
33032            "name": "createdAt",
33033            "description": null,
33034            "args": [],
33035            "type": {
33036              "kind": "NON_NULL",
33037              "name": null,
33038              "ofType": {
33039                "kind": "SCALAR",
33040                "name": "DateTime",
33041                "ofType": null
33042              }
33043            },
33044            "isDeprecated": false,
33045            "deprecationReason": null
33046          },
33047          {
33048            "name": "gitCommitHash",
33049            "description": null,
33050            "args": [],
33051            "type": {
33052              "kind": "SCALAR",
33053              "name": "String",
33054              "ofType": null
33055            },
33056            "isDeprecated": false,
33057            "deprecationReason": null
33058          },
33059          {
33060            "name": "group",
33061            "description": null,
33062            "args": [],
33063            "type": {
33064              "kind": "NON_NULL",
33065              "name": null,
33066              "ofType": {
33067                "kind": "SCALAR",
33068                "name": "String",
33069                "ofType": null
33070              }
33071            },
33072            "isDeprecated": false,
33073            "deprecationReason": null
33074          },
33075          {
33076            "name": "id",
33077            "description": null,
33078            "args": [],
33079            "type": {
33080              "kind": "NON_NULL",
33081              "name": null,
33082              "ofType": {
33083                "kind": "SCALAR",
33084                "name": "ID",
33085                "ofType": null
33086              }
33087            },
33088            "isDeprecated": false,
33089            "deprecationReason": null
33090          },
33091          {
33092            "name": "isGitWorkingTreeDirty",
33093            "description": null,
33094            "args": [],
33095            "type": {
33096              "kind": "NON_NULL",
33097              "name": null,
33098              "ofType": {
33099                "kind": "SCALAR",
33100                "name": "Boolean",
33101                "ofType": null
33102              }
33103            },
33104            "isDeprecated": false,
33105            "deprecationReason": null
33106          },
33107          {
33108            "name": "isRollBackToEmbedded",
33109            "description": null,
33110            "args": [],
33111            "type": {
33112              "kind": "NON_NULL",
33113              "name": null,
33114              "ofType": {
33115                "kind": "SCALAR",
33116                "name": "Boolean",
33117                "ofType": null
33118              }
33119            },
33120            "isDeprecated": false,
33121            "deprecationReason": null
33122          },
33123          {
33124            "name": "manifestFragment",
33125            "description": null,
33126            "args": [],
33127            "type": {
33128              "kind": "NON_NULL",
33129              "name": null,
33130              "ofType": {
33131                "kind": "SCALAR",
33132                "name": "String",
33133                "ofType": null
33134              }
33135            },
33136            "isDeprecated": false,
33137            "deprecationReason": null
33138          },
33139          {
33140            "name": "manifestPermalink",
33141            "description": null,
33142            "args": [],
33143            "type": {
33144              "kind": "NON_NULL",
33145              "name": null,
33146              "ofType": {
33147                "kind": "SCALAR",
33148                "name": "String",
33149                "ofType": null
33150              }
33151            },
33152            "isDeprecated": false,
33153            "deprecationReason": null
33154          },
33155          {
33156            "name": "message",
33157            "description": null,
33158            "args": [],
33159            "type": {
33160              "kind": "SCALAR",
33161              "name": "String",
33162              "ofType": null
33163            },
33164            "isDeprecated": false,
33165            "deprecationReason": null
33166          },
33167          {
33168            "name": "platform",
33169            "description": null,
33170            "args": [],
33171            "type": {
33172              "kind": "NON_NULL",
33173              "name": null,
33174              "ofType": {
33175                "kind": "SCALAR",
33176                "name": "String",
33177                "ofType": null
33178              }
33179            },
33180            "isDeprecated": false,
33181            "deprecationReason": null
33182          },
33183          {
33184            "name": "runtime",
33185            "description": null,
33186            "args": [],
33187            "type": {
33188              "kind": "NON_NULL",
33189              "name": null,
33190              "ofType": {
33191                "kind": "OBJECT",
33192                "name": "Runtime",
33193                "ofType": null
33194              }
33195            },
33196            "isDeprecated": false,
33197            "deprecationReason": null
33198          },
33199          {
33200            "name": "runtimeVersion",
33201            "description": null,
33202            "args": [],
33203            "type": {
33204              "kind": "NON_NULL",
33205              "name": null,
33206              "ofType": {
33207                "kind": "SCALAR",
33208                "name": "String",
33209                "ofType": null
33210              }
33211            },
33212            "isDeprecated": true,
33213            "deprecationReason": "Use 'runtime' field ."
33214          },
33215          {
33216            "name": "updatedAt",
33217            "description": null,
33218            "args": [],
33219            "type": {
33220              "kind": "NON_NULL",
33221              "name": null,
33222              "ofType": {
33223                "kind": "SCALAR",
33224                "name": "DateTime",
33225                "ofType": null
33226              }
33227            },
33228            "isDeprecated": false,
33229            "deprecationReason": null
33230          }
33231        ],
33232        "inputFields": null,
33233        "interfaces": [
33234          {
33235            "kind": "INTERFACE",
33236            "name": "ActivityTimelineProjectActivity",
33237            "ofType": null
33238          }
33239        ],
33240        "enumValues": null,
33241        "possibleTypes": null
33242      },
33243      {
33244        "kind": "OBJECT",
33245        "name": "UpdateBranch",
33246        "description": null,
33247        "fields": [
33248          {
33249            "name": "app",
33250            "description": null,
33251            "args": [],
33252            "type": {
33253              "kind": "NON_NULL",
33254              "name": null,
33255              "ofType": {
33256                "kind": "OBJECT",
33257                "name": "App",
33258                "ofType": null
33259              }
33260            },
33261            "isDeprecated": false,
33262            "deprecationReason": null
33263          },
33264          {
33265            "name": "appId",
33266            "description": null,
33267            "args": [],
33268            "type": {
33269              "kind": "NON_NULL",
33270              "name": null,
33271              "ofType": {
33272                "kind": "SCALAR",
33273                "name": "ID",
33274                "ofType": null
33275              }
33276            },
33277            "isDeprecated": false,
33278            "deprecationReason": null
33279          },
33280          {
33281            "name": "createdAt",
33282            "description": null,
33283            "args": [],
33284            "type": {
33285              "kind": "NON_NULL",
33286              "name": null,
33287              "ofType": {
33288                "kind": "SCALAR",
33289                "name": "DateTime",
33290                "ofType": null
33291              }
33292            },
33293            "isDeprecated": false,
33294            "deprecationReason": null
33295          },
33296          {
33297            "name": "id",
33298            "description": null,
33299            "args": [],
33300            "type": {
33301              "kind": "NON_NULL",
33302              "name": null,
33303              "ofType": {
33304                "kind": "SCALAR",
33305                "name": "ID",
33306                "ofType": null
33307              }
33308            },
33309            "isDeprecated": false,
33310            "deprecationReason": null
33311          },
33312          {
33313            "name": "name",
33314            "description": null,
33315            "args": [],
33316            "type": {
33317              "kind": "NON_NULL",
33318              "name": null,
33319              "ofType": {
33320                "kind": "SCALAR",
33321                "name": "String",
33322                "ofType": null
33323              }
33324            },
33325            "isDeprecated": false,
33326            "deprecationReason": null
33327          },
33328          {
33329            "name": "updateGroups",
33330            "description": null,
33331            "args": [
33332              {
33333                "name": "filter",
33334                "description": null,
33335                "type": {
33336                  "kind": "INPUT_OBJECT",
33337                  "name": "UpdatesFilter",
33338                  "ofType": null
33339                },
33340                "defaultValue": null,
33341                "isDeprecated": false,
33342                "deprecationReason": null
33343              },
33344              {
33345                "name": "limit",
33346                "description": null,
33347                "type": {
33348                  "kind": "NON_NULL",
33349                  "name": null,
33350                  "ofType": {
33351                    "kind": "SCALAR",
33352                    "name": "Int",
33353                    "ofType": null
33354                  }
33355                },
33356                "defaultValue": null,
33357                "isDeprecated": false,
33358                "deprecationReason": null
33359              },
33360              {
33361                "name": "offset",
33362                "description": null,
33363                "type": {
33364                  "kind": "NON_NULL",
33365                  "name": null,
33366                  "ofType": {
33367                    "kind": "SCALAR",
33368                    "name": "Int",
33369                    "ofType": null
33370                  }
33371                },
33372                "defaultValue": null,
33373                "isDeprecated": false,
33374                "deprecationReason": null
33375              }
33376            ],
33377            "type": {
33378              "kind": "NON_NULL",
33379              "name": null,
33380              "ofType": {
33381                "kind": "LIST",
33382                "name": null,
33383                "ofType": {
33384                  "kind": "NON_NULL",
33385                  "name": null,
33386                  "ofType": {
33387                    "kind": "LIST",
33388                    "name": null,
33389                    "ofType": {
33390                      "kind": "NON_NULL",
33391                      "name": null,
33392                      "ofType": {
33393                        "kind": "OBJECT",
33394                        "name": "Update",
33395                        "ofType": null
33396                      }
33397                    }
33398                  }
33399                }
33400              }
33401            },
33402            "isDeprecated": false,
33403            "deprecationReason": null
33404          },
33405          {
33406            "name": "updatedAt",
33407            "description": null,
33408            "args": [],
33409            "type": {
33410              "kind": "NON_NULL",
33411              "name": null,
33412              "ofType": {
33413                "kind": "SCALAR",
33414                "name": "DateTime",
33415                "ofType": null
33416              }
33417            },
33418            "isDeprecated": false,
33419            "deprecationReason": null
33420          },
33421          {
33422            "name": "updates",
33423            "description": null,
33424            "args": [
33425              {
33426                "name": "filter",
33427                "description": null,
33428                "type": {
33429                  "kind": "INPUT_OBJECT",
33430                  "name": "UpdatesFilter",
33431                  "ofType": null
33432                },
33433                "defaultValue": null,
33434                "isDeprecated": false,
33435                "deprecationReason": null
33436              },
33437              {
33438                "name": "limit",
33439                "description": null,
33440                "type": {
33441                  "kind": "NON_NULL",
33442                  "name": null,
33443                  "ofType": {
33444                    "kind": "SCALAR",
33445                    "name": "Int",
33446                    "ofType": null
33447                  }
33448                },
33449                "defaultValue": null,
33450                "isDeprecated": false,
33451                "deprecationReason": null
33452              },
33453              {
33454                "name": "offset",
33455                "description": null,
33456                "type": {
33457                  "kind": "NON_NULL",
33458                  "name": null,
33459                  "ofType": {
33460                    "kind": "SCALAR",
33461                    "name": "Int",
33462                    "ofType": null
33463                  }
33464                },
33465                "defaultValue": null,
33466                "isDeprecated": false,
33467                "deprecationReason": null
33468              }
33469            ],
33470            "type": {
33471              "kind": "NON_NULL",
33472              "name": null,
33473              "ofType": {
33474                "kind": "LIST",
33475                "name": null,
33476                "ofType": {
33477                  "kind": "NON_NULL",
33478                  "name": null,
33479                  "ofType": {
33480                    "kind": "OBJECT",
33481                    "name": "Update",
33482                    "ofType": null
33483                  }
33484                }
33485              }
33486            },
33487            "isDeprecated": false,
33488            "deprecationReason": null
33489          }
33490        ],
33491        "inputFields": null,
33492        "interfaces": [],
33493        "enumValues": null,
33494        "possibleTypes": null
33495      },
33496      {
33497        "kind": "OBJECT",
33498        "name": "UpdateBranchMutation",
33499        "description": null,
33500        "fields": [
33501          {
33502            "name": "createUpdateBranchForApp",
33503            "description": "Create an EAS branch for an app",
33504            "args": [
33505              {
33506                "name": "appId",
33507                "description": null,
33508                "type": {
33509                  "kind": "NON_NULL",
33510                  "name": null,
33511                  "ofType": {
33512                    "kind": "SCALAR",
33513                    "name": "ID",
33514                    "ofType": null
33515                  }
33516                },
33517                "defaultValue": null,
33518                "isDeprecated": false,
33519                "deprecationReason": null
33520              },
33521              {
33522                "name": "name",
33523                "description": null,
33524                "type": {
33525                  "kind": "NON_NULL",
33526                  "name": null,
33527                  "ofType": {
33528                    "kind": "SCALAR",
33529                    "name": "String",
33530                    "ofType": null
33531                  }
33532                },
33533                "defaultValue": null,
33534                "isDeprecated": false,
33535                "deprecationReason": null
33536              }
33537            ],
33538            "type": {
33539              "kind": "NON_NULL",
33540              "name": null,
33541              "ofType": {
33542                "kind": "OBJECT",
33543                "name": "UpdateBranch",
33544                "ofType": null
33545              }
33546            },
33547            "isDeprecated": false,
33548            "deprecationReason": null
33549          },
33550          {
33551            "name": "deleteUpdateBranch",
33552            "description": "Delete an EAS branch and all of its updates as long as the branch is not being used by any channels",
33553            "args": [
33554              {
33555                "name": "branchId",
33556                "description": null,
33557                "type": {
33558                  "kind": "NON_NULL",
33559                  "name": null,
33560                  "ofType": {
33561                    "kind": "SCALAR",
33562                    "name": "ID",
33563                    "ofType": null
33564                  }
33565                },
33566                "defaultValue": null,
33567                "isDeprecated": false,
33568                "deprecationReason": null
33569              }
33570            ],
33571            "type": {
33572              "kind": "NON_NULL",
33573              "name": null,
33574              "ofType": {
33575                "kind": "OBJECT",
33576                "name": "DeleteUpdateBranchResult",
33577                "ofType": null
33578              }
33579            },
33580            "isDeprecated": false,
33581            "deprecationReason": null
33582          },
33583          {
33584            "name": "editUpdateBranch",
33585            "description": "Edit an EAS branch. The branch can be specified either by its ID or\nwith the combination of (appId, name).",
33586            "args": [
33587              {
33588                "name": "input",
33589                "description": null,
33590                "type": {
33591                  "kind": "NON_NULL",
33592                  "name": null,
33593                  "ofType": {
33594                    "kind": "INPUT_OBJECT",
33595                    "name": "EditUpdateBranchInput",
33596                    "ofType": null
33597                  }
33598                },
33599                "defaultValue": null,
33600                "isDeprecated": false,
33601                "deprecationReason": null
33602              }
33603            ],
33604            "type": {
33605              "kind": "NON_NULL",
33606              "name": null,
33607              "ofType": {
33608                "kind": "OBJECT",
33609                "name": "UpdateBranch",
33610                "ofType": null
33611              }
33612            },
33613            "isDeprecated": false,
33614            "deprecationReason": null
33615          },
33616          {
33617            "name": "publishUpdateGroups",
33618            "description": "Publish an update group to a branch",
33619            "args": [
33620              {
33621                "name": "publishUpdateGroupsInput",
33622                "description": null,
33623                "type": {
33624                  "kind": "NON_NULL",
33625                  "name": null,
33626                  "ofType": {
33627                    "kind": "LIST",
33628                    "name": null,
33629                    "ofType": {
33630                      "kind": "NON_NULL",
33631                      "name": null,
33632                      "ofType": {
33633                        "kind": "INPUT_OBJECT",
33634                        "name": "PublishUpdateGroupInput",
33635                        "ofType": null
33636                      }
33637                    }
33638                  }
33639                },
33640                "defaultValue": null,
33641                "isDeprecated": false,
33642                "deprecationReason": null
33643              }
33644            ],
33645            "type": {
33646              "kind": "NON_NULL",
33647              "name": null,
33648              "ofType": {
33649                "kind": "LIST",
33650                "name": null,
33651                "ofType": {
33652                  "kind": "NON_NULL",
33653                  "name": null,
33654                  "ofType": {
33655                    "kind": "OBJECT",
33656                    "name": "Update",
33657                    "ofType": null
33658                  }
33659                }
33660              }
33661            },
33662            "isDeprecated": false,
33663            "deprecationReason": null
33664          }
33665        ],
33666        "inputFields": null,
33667        "interfaces": [],
33668        "enumValues": null,
33669        "possibleTypes": null
33670      },
33671      {
33672        "kind": "OBJECT",
33673        "name": "UpdateChannel",
33674        "description": null,
33675        "fields": [
33676          {
33677            "name": "app",
33678            "description": null,
33679            "args": [],
33680            "type": {
33681              "kind": "NON_NULL",
33682              "name": null,
33683              "ofType": {
33684                "kind": "OBJECT",
33685                "name": "App",
33686                "ofType": null
33687              }
33688            },
33689            "isDeprecated": false,
33690            "deprecationReason": null
33691          },
33692          {
33693            "name": "appId",
33694            "description": null,
33695            "args": [],
33696            "type": {
33697              "kind": "NON_NULL",
33698              "name": null,
33699              "ofType": {
33700                "kind": "SCALAR",
33701                "name": "ID",
33702                "ofType": null
33703              }
33704            },
33705            "isDeprecated": false,
33706            "deprecationReason": null
33707          },
33708          {
33709            "name": "branchMapping",
33710            "description": null,
33711            "args": [],
33712            "type": {
33713              "kind": "NON_NULL",
33714              "name": null,
33715              "ofType": {
33716                "kind": "SCALAR",
33717                "name": "String",
33718                "ofType": null
33719              }
33720            },
33721            "isDeprecated": false,
33722            "deprecationReason": null
33723          },
33724          {
33725            "name": "createdAt",
33726            "description": null,
33727            "args": [],
33728            "type": {
33729              "kind": "NON_NULL",
33730              "name": null,
33731              "ofType": {
33732                "kind": "SCALAR",
33733                "name": "DateTime",
33734                "ofType": null
33735              }
33736            },
33737            "isDeprecated": false,
33738            "deprecationReason": null
33739          },
33740          {
33741            "name": "id",
33742            "description": null,
33743            "args": [],
33744            "type": {
33745              "kind": "NON_NULL",
33746              "name": null,
33747              "ofType": {
33748                "kind": "SCALAR",
33749                "name": "ID",
33750                "ofType": null
33751              }
33752            },
33753            "isDeprecated": false,
33754            "deprecationReason": null
33755          },
33756          {
33757            "name": "name",
33758            "description": null,
33759            "args": [],
33760            "type": {
33761              "kind": "NON_NULL",
33762              "name": null,
33763              "ofType": {
33764                "kind": "SCALAR",
33765                "name": "String",
33766                "ofType": null
33767              }
33768            },
33769            "isDeprecated": false,
33770            "deprecationReason": null
33771          },
33772          {
33773            "name": "updateBranches",
33774            "description": null,
33775            "args": [
33776              {
33777                "name": "limit",
33778                "description": null,
33779                "type": {
33780                  "kind": "NON_NULL",
33781                  "name": null,
33782                  "ofType": {
33783                    "kind": "SCALAR",
33784                    "name": "Int",
33785                    "ofType": null
33786                  }
33787                },
33788                "defaultValue": null,
33789                "isDeprecated": false,
33790                "deprecationReason": null
33791              },
33792              {
33793                "name": "offset",
33794                "description": null,
33795                "type": {
33796                  "kind": "NON_NULL",
33797                  "name": null,
33798                  "ofType": {
33799                    "kind": "SCALAR",
33800                    "name": "Int",
33801                    "ofType": null
33802                  }
33803                },
33804                "defaultValue": null,
33805                "isDeprecated": false,
33806                "deprecationReason": null
33807              }
33808            ],
33809            "type": {
33810              "kind": "NON_NULL",
33811              "name": null,
33812              "ofType": {
33813                "kind": "LIST",
33814                "name": null,
33815                "ofType": {
33816                  "kind": "NON_NULL",
33817                  "name": null,
33818                  "ofType": {
33819                    "kind": "OBJECT",
33820                    "name": "UpdateBranch",
33821                    "ofType": null
33822                  }
33823                }
33824              }
33825            },
33826            "isDeprecated": false,
33827            "deprecationReason": null
33828          },
33829          {
33830            "name": "updatedAt",
33831            "description": null,
33832            "args": [],
33833            "type": {
33834              "kind": "NON_NULL",
33835              "name": null,
33836              "ofType": {
33837                "kind": "SCALAR",
33838                "name": "DateTime",
33839                "ofType": null
33840              }
33841            },
33842            "isDeprecated": false,
33843            "deprecationReason": null
33844          }
33845        ],
33846        "inputFields": null,
33847        "interfaces": [],
33848        "enumValues": null,
33849        "possibleTypes": null
33850      },
33851      {
33852        "kind": "OBJECT",
33853        "name": "UpdateChannelMutation",
33854        "description": null,
33855        "fields": [
33856          {
33857            "name": "createUpdateChannelForApp",
33858            "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.",
33859            "args": [
33860              {
33861                "name": "appId",
33862                "description": null,
33863                "type": {
33864                  "kind": "NON_NULL",
33865                  "name": null,
33866                  "ofType": {
33867                    "kind": "SCALAR",
33868                    "name": "ID",
33869                    "ofType": null
33870                  }
33871                },
33872                "defaultValue": null,
33873                "isDeprecated": false,
33874                "deprecationReason": null
33875              },
33876              {
33877                "name": "branchMapping",
33878                "description": null,
33879                "type": {
33880                  "kind": "SCALAR",
33881                  "name": "String",
33882                  "ofType": null
33883                },
33884                "defaultValue": null,
33885                "isDeprecated": false,
33886                "deprecationReason": null
33887              },
33888              {
33889                "name": "name",
33890                "description": null,
33891                "type": {
33892                  "kind": "NON_NULL",
33893                  "name": null,
33894                  "ofType": {
33895                    "kind": "SCALAR",
33896                    "name": "String",
33897                    "ofType": null
33898                  }
33899                },
33900                "defaultValue": null,
33901                "isDeprecated": false,
33902                "deprecationReason": null
33903              }
33904            ],
33905            "type": {
33906              "kind": "NON_NULL",
33907              "name": null,
33908              "ofType": {
33909                "kind": "OBJECT",
33910                "name": "UpdateChannel",
33911                "ofType": null
33912              }
33913            },
33914            "isDeprecated": false,
33915            "deprecationReason": null
33916          },
33917          {
33918            "name": "deleteUpdateChannel",
33919            "description": "delete an EAS channel that doesn't point to any branches",
33920            "args": [
33921              {
33922                "name": "channelId",
33923                "description": null,
33924                "type": {
33925                  "kind": "NON_NULL",
33926                  "name": null,
33927                  "ofType": {
33928                    "kind": "SCALAR",
33929                    "name": "ID",
33930                    "ofType": null
33931                  }
33932                },
33933                "defaultValue": null,
33934                "isDeprecated": false,
33935                "deprecationReason": null
33936              }
33937            ],
33938            "type": {
33939              "kind": "NON_NULL",
33940              "name": null,
33941              "ofType": {
33942                "kind": "OBJECT",
33943                "name": "DeleteUpdateChannelResult",
33944                "ofType": null
33945              }
33946            },
33947            "isDeprecated": false,
33948            "deprecationReason": null
33949          },
33950          {
33951            "name": "editUpdateChannel",
33952            "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.",
33953            "args": [
33954              {
33955                "name": "branchMapping",
33956                "description": null,
33957                "type": {
33958                  "kind": "NON_NULL",
33959                  "name": null,
33960                  "ofType": {
33961                    "kind": "SCALAR",
33962                    "name": "String",
33963                    "ofType": null
33964                  }
33965                },
33966                "defaultValue": null,
33967                "isDeprecated": false,
33968                "deprecationReason": null
33969              },
33970              {
33971                "name": "channelId",
33972                "description": null,
33973                "type": {
33974                  "kind": "NON_NULL",
33975                  "name": null,
33976                  "ofType": {
33977                    "kind": "SCALAR",
33978                    "name": "ID",
33979                    "ofType": null
33980                  }
33981                },
33982                "defaultValue": null,
33983                "isDeprecated": false,
33984                "deprecationReason": null
33985              }
33986            ],
33987            "type": {
33988              "kind": "NON_NULL",
33989              "name": null,
33990              "ofType": {
33991                "kind": "OBJECT",
33992                "name": "UpdateChannel",
33993                "ofType": null
33994              }
33995            },
33996            "isDeprecated": false,
33997            "deprecationReason": null
33998          }
33999        ],
34000        "inputFields": null,
34001        "interfaces": [],
34002        "enumValues": null,
34003        "possibleTypes": null
34004      },
34005      {
34006        "kind": "INPUT_OBJECT",
34007        "name": "UpdateGitHubRepositorySettingsInput",
34008        "description": null,
34009        "fields": null,
34010        "inputFields": [
34011          {
34012            "name": "baseDirectory",
34013            "description": null,
34014            "type": {
34015              "kind": "NON_NULL",
34016              "name": null,
34017              "ofType": {
34018                "kind": "SCALAR",
34019                "name": "String",
34020                "ofType": null
34021              }
34022            },
34023            "defaultValue": null,
34024            "isDeprecated": false,
34025            "deprecationReason": null
34026          }
34027        ],
34028        "interfaces": null,
34029        "enumValues": null,
34030        "possibleTypes": null
34031      },
34032      {
34033        "kind": "INPUT_OBJECT",
34034        "name": "UpdateInfoGroup",
34035        "description": null,
34036        "fields": null,
34037        "inputFields": [
34038          {
34039            "name": "android",
34040            "description": null,
34041            "type": {
34042              "kind": "INPUT_OBJECT",
34043              "name": "PartialManifest",
34044              "ofType": null
34045            },
34046            "defaultValue": null,
34047            "isDeprecated": false,
34048            "deprecationReason": null
34049          },
34050          {
34051            "name": "ios",
34052            "description": null,
34053            "type": {
34054              "kind": "INPUT_OBJECT",
34055              "name": "PartialManifest",
34056              "ofType": null
34057            },
34058            "defaultValue": null,
34059            "isDeprecated": false,
34060            "deprecationReason": null
34061          },
34062          {
34063            "name": "web",
34064            "description": null,
34065            "type": {
34066              "kind": "INPUT_OBJECT",
34067              "name": "PartialManifest",
34068              "ofType": null
34069            },
34070            "defaultValue": null,
34071            "isDeprecated": false,
34072            "deprecationReason": null
34073          }
34074        ],
34075        "interfaces": null,
34076        "enumValues": null,
34077        "possibleTypes": null
34078      },
34079      {
34080        "kind": "OBJECT",
34081        "name": "UpdateMutation",
34082        "description": null,
34083        "fields": [
34084          {
34085            "name": "deleteUpdateGroup",
34086            "description": "Delete an EAS update group",
34087            "args": [
34088              {
34089                "name": "group",
34090                "description": null,
34091                "type": {
34092                  "kind": "NON_NULL",
34093                  "name": null,
34094                  "ofType": {
34095                    "kind": "SCALAR",
34096                    "name": "ID",
34097                    "ofType": null
34098                  }
34099                },
34100                "defaultValue": null,
34101                "isDeprecated": false,
34102                "deprecationReason": null
34103              }
34104            ],
34105            "type": {
34106              "kind": "NON_NULL",
34107              "name": null,
34108              "ofType": {
34109                "kind": "OBJECT",
34110                "name": "DeleteUpdateGroupResult",
34111                "ofType": null
34112              }
34113            },
34114            "isDeprecated": false,
34115            "deprecationReason": null
34116          },
34117          {
34118            "name": "setCodeSigningInfo",
34119            "description": "Set code signing info for an update",
34120            "args": [
34121              {
34122                "name": "codeSigningInfo",
34123                "description": null,
34124                "type": {
34125                  "kind": "NON_NULL",
34126                  "name": null,
34127                  "ofType": {
34128                    "kind": "INPUT_OBJECT",
34129                    "name": "CodeSigningInfoInput",
34130                    "ofType": null
34131                  }
34132                },
34133                "defaultValue": null,
34134                "isDeprecated": false,
34135                "deprecationReason": null
34136              },
34137              {
34138                "name": "updateId",
34139                "description": null,
34140                "type": {
34141                  "kind": "NON_NULL",
34142                  "name": null,
34143                  "ofType": {
34144                    "kind": "SCALAR",
34145                    "name": "ID",
34146                    "ofType": null
34147                  }
34148                },
34149                "defaultValue": null,
34150                "isDeprecated": false,
34151                "deprecationReason": null
34152              }
34153            ],
34154            "type": {
34155              "kind": "NON_NULL",
34156              "name": null,
34157              "ofType": {
34158                "kind": "OBJECT",
34159                "name": "Update",
34160                "ofType": null
34161              }
34162            },
34163            "isDeprecated": false,
34164            "deprecationReason": null
34165          }
34166        ],
34167        "inputFields": null,
34168        "interfaces": [],
34169        "enumValues": null,
34170        "possibleTypes": null
34171      },
34172      {
34173        "kind": "INPUT_OBJECT",
34174        "name": "UpdateRollBackToEmbeddedGroup",
34175        "description": null,
34176        "fields": null,
34177        "inputFields": [
34178          {
34179            "name": "android",
34180            "description": null,
34181            "type": {
34182              "kind": "SCALAR",
34183              "name": "Boolean",
34184              "ofType": null
34185            },
34186            "defaultValue": null,
34187            "isDeprecated": false,
34188            "deprecationReason": null
34189          },
34190          {
34191            "name": "ios",
34192            "description": null,
34193            "type": {
34194              "kind": "SCALAR",
34195              "name": "Boolean",
34196              "ofType": null
34197            },
34198            "defaultValue": null,
34199            "isDeprecated": false,
34200            "deprecationReason": null
34201          },
34202          {
34203            "name": "web",
34204            "description": null,
34205            "type": {
34206              "kind": "SCALAR",
34207              "name": "Boolean",
34208              "ofType": null
34209            },
34210            "defaultValue": null,
34211            "isDeprecated": false,
34212            "deprecationReason": null
34213          }
34214        ],
34215        "interfaces": null,
34216        "enumValues": null,
34217        "possibleTypes": null
34218      },
34219      {
34220        "kind": "INPUT_OBJECT",
34221        "name": "UpdatesFilter",
34222        "description": null,
34223        "fields": null,
34224        "inputFields": [
34225          {
34226            "name": "platform",
34227            "description": null,
34228            "type": {
34229              "kind": "ENUM",
34230              "name": "AppPlatform",
34231              "ofType": null
34232            },
34233            "defaultValue": null,
34234            "isDeprecated": false,
34235            "deprecationReason": null
34236          },
34237          {
34238            "name": "runtimeVersions",
34239            "description": null,
34240            "type": {
34241              "kind": "LIST",
34242              "name": null,
34243              "ofType": {
34244                "kind": "NON_NULL",
34245                "name": null,
34246                "ofType": {
34247                  "kind": "SCALAR",
34248                  "name": "String",
34249                  "ofType": null
34250                }
34251              }
34252            },
34253            "defaultValue": null,
34254            "isDeprecated": false,
34255            "deprecationReason": null
34256          },
34257          {
34258            "name": "sdkVersions",
34259            "description": null,
34260            "type": {
34261              "kind": "LIST",
34262              "name": null,
34263              "ofType": {
34264                "kind": "NON_NULL",
34265                "name": null,
34266                "ofType": {
34267                  "kind": "SCALAR",
34268                  "name": "String",
34269                  "ofType": null
34270                }
34271              }
34272            },
34273            "defaultValue": null,
34274            "isDeprecated": false,
34275            "deprecationReason": null
34276          }
34277        ],
34278        "interfaces": null,
34279        "enumValues": null,
34280        "possibleTypes": null
34281      },
34282      {
34283        "kind": "OBJECT",
34284        "name": "UploadSession",
34285        "description": null,
34286        "fields": [
34287          {
34288            "name": "createUploadSession",
34289            "description": "Create an Upload Session",
34290            "args": [
34291              {
34292                "name": "type",
34293                "description": null,
34294                "type": {
34295                  "kind": "NON_NULL",
34296                  "name": null,
34297                  "ofType": {
34298                    "kind": "ENUM",
34299                    "name": "UploadSessionType",
34300                    "ofType": null
34301                  }
34302                },
34303                "defaultValue": null,
34304                "isDeprecated": false,
34305                "deprecationReason": null
34306              }
34307            ],
34308            "type": {
34309              "kind": "NON_NULL",
34310              "name": null,
34311              "ofType": {
34312                "kind": "SCALAR",
34313                "name": "JSONObject",
34314                "ofType": null
34315              }
34316            },
34317            "isDeprecated": false,
34318            "deprecationReason": null
34319          }
34320        ],
34321        "inputFields": null,
34322        "interfaces": [],
34323        "enumValues": null,
34324        "possibleTypes": null
34325      },
34326      {
34327        "kind": "ENUM",
34328        "name": "UploadSessionType",
34329        "description": null,
34330        "fields": null,
34331        "inputFields": null,
34332        "interfaces": null,
34333        "enumValues": [
34334          {
34335            "name": "EAS_BUILD_GCS_PROJECT_SOURCES",
34336            "description": null,
34337            "isDeprecated": false,
34338            "deprecationReason": null
34339          },
34340          {
34341            "name": "EAS_BUILD_PROJECT_SOURCES",
34342            "description": null,
34343            "isDeprecated": false,
34344            "deprecationReason": null
34345          },
34346          {
34347            "name": "EAS_SUBMIT_APP_ARCHIVE",
34348            "description": null,
34349            "isDeprecated": false,
34350            "deprecationReason": null
34351          },
34352          {
34353            "name": "EAS_SUBMIT_GCS_APP_ARCHIVE",
34354            "description": null,
34355            "isDeprecated": false,
34356            "deprecationReason": null
34357          }
34358        ],
34359        "possibleTypes": null
34360      },
34361      {
34362        "kind": "OBJECT",
34363        "name": "UsageMetricTotal",
34364        "description": null,
34365        "fields": [
34366          {
34367            "name": "billingPeriod",
34368            "description": null,
34369            "args": [],
34370            "type": {
34371              "kind": "NON_NULL",
34372              "name": null,
34373              "ofType": {
34374                "kind": "OBJECT",
34375                "name": "BillingPeriod",
34376                "ofType": null
34377              }
34378            },
34379            "isDeprecated": false,
34380            "deprecationReason": null
34381          },
34382          {
34383            "name": "id",
34384            "description": null,
34385            "args": [],
34386            "type": {
34387              "kind": "NON_NULL",
34388              "name": null,
34389              "ofType": {
34390                "kind": "SCALAR",
34391                "name": "ID",
34392                "ofType": null
34393              }
34394            },
34395            "isDeprecated": false,
34396            "deprecationReason": null
34397          },
34398          {
34399            "name": "overageMetrics",
34400            "description": null,
34401            "args": [],
34402            "type": {
34403              "kind": "NON_NULL",
34404              "name": null,
34405              "ofType": {
34406                "kind": "LIST",
34407                "name": null,
34408                "ofType": {
34409                  "kind": "NON_NULL",
34410                  "name": null,
34411                  "ofType": {
34412                    "kind": "OBJECT",
34413                    "name": "EstimatedOverageAndCost",
34414                    "ofType": null
34415                  }
34416                }
34417              }
34418            },
34419            "isDeprecated": false,
34420            "deprecationReason": null
34421          },
34422          {
34423            "name": "planMetrics",
34424            "description": null,
34425            "args": [],
34426            "type": {
34427              "kind": "NON_NULL",
34428              "name": null,
34429              "ofType": {
34430                "kind": "LIST",
34431                "name": null,
34432                "ofType": {
34433                  "kind": "NON_NULL",
34434                  "name": null,
34435                  "ofType": {
34436                    "kind": "OBJECT",
34437                    "name": "EstimatedUsage",
34438                    "ofType": null
34439                  }
34440                }
34441              }
34442            },
34443            "isDeprecated": false,
34444            "deprecationReason": null
34445          },
34446          {
34447            "name": "totalCost",
34448            "description": "Total cost of overages, in cents",
34449            "args": [],
34450            "type": {
34451              "kind": "NON_NULL",
34452              "name": null,
34453              "ofType": {
34454                "kind": "SCALAR",
34455                "name": "Float",
34456                "ofType": null
34457              }
34458            },
34459            "isDeprecated": false,
34460            "deprecationReason": null
34461          }
34462        ],
34463        "inputFields": null,
34464        "interfaces": [],
34465        "enumValues": null,
34466        "possibleTypes": null
34467      },
34468      {
34469        "kind": "ENUM",
34470        "name": "UsageMetricType",
34471        "description": null,
34472        "fields": null,
34473        "inputFields": null,
34474        "interfaces": null,
34475        "enumValues": [
34476          {
34477            "name": "BANDWIDTH",
34478            "description": null,
34479            "isDeprecated": false,
34480            "deprecationReason": null
34481          },
34482          {
34483            "name": "BUILD",
34484            "description": null,
34485            "isDeprecated": false,
34486            "deprecationReason": null
34487          },
34488          {
34489            "name": "REQUEST",
34490            "description": null,
34491            "isDeprecated": false,
34492            "deprecationReason": null
34493          },
34494          {
34495            "name": "UPDATE",
34496            "description": null,
34497            "isDeprecated": false,
34498            "deprecationReason": null
34499          },
34500          {
34501            "name": "USER",
34502            "description": null,
34503            "isDeprecated": false,
34504            "deprecationReason": null
34505          }
34506        ],
34507        "possibleTypes": null
34508      },
34509      {
34510        "kind": "ENUM",
34511        "name": "UsageMetricsGranularity",
34512        "description": null,
34513        "fields": null,
34514        "inputFields": null,
34515        "interfaces": null,
34516        "enumValues": [
34517          {
34518            "name": "DAY",
34519            "description": null,
34520            "isDeprecated": false,
34521            "deprecationReason": null
34522          },
34523          {
34524            "name": "HOUR",
34525            "description": null,
34526            "isDeprecated": false,
34527            "deprecationReason": null
34528          },
34529          {
34530            "name": "MINUTE",
34531            "description": null,
34532            "isDeprecated": false,
34533            "deprecationReason": null
34534          },
34535          {
34536            "name": "TOTAL",
34537            "description": null,
34538            "isDeprecated": false,
34539            "deprecationReason": null
34540          }
34541        ],
34542        "possibleTypes": null
34543      },
34544      {
34545        "kind": "INPUT_OBJECT",
34546        "name": "UsageMetricsTimespan",
34547        "description": null,
34548        "fields": null,
34549        "inputFields": [
34550          {
34551            "name": "end",
34552            "description": null,
34553            "type": {
34554              "kind": "NON_NULL",
34555              "name": null,
34556              "ofType": {
34557                "kind": "SCALAR",
34558                "name": "DateTime",
34559                "ofType": null
34560              }
34561            },
34562            "defaultValue": null,
34563            "isDeprecated": false,
34564            "deprecationReason": null
34565          },
34566          {
34567            "name": "start",
34568            "description": null,
34569            "type": {
34570              "kind": "NON_NULL",
34571              "name": null,
34572              "ofType": {
34573                "kind": "SCALAR",
34574                "name": "DateTime",
34575                "ofType": null
34576              }
34577            },
34578            "defaultValue": null,
34579            "isDeprecated": false,
34580            "deprecationReason": null
34581          }
34582        ],
34583        "interfaces": null,
34584        "enumValues": null,
34585        "possibleTypes": null
34586      },
34587      {
34588        "kind": "OBJECT",
34589        "name": "User",
34590        "description": "Represents a human (not robot) actor.",
34591        "fields": [
34592          {
34593            "name": "accessTokens",
34594            "description": "Access Tokens belonging to this actor",
34595            "args": [],
34596            "type": {
34597              "kind": "NON_NULL",
34598              "name": null,
34599              "ofType": {
34600                "kind": "LIST",
34601                "name": null,
34602                "ofType": {
34603                  "kind": "NON_NULL",
34604                  "name": null,
34605                  "ofType": {
34606                    "kind": "OBJECT",
34607                    "name": "AccessToken",
34608                    "ofType": null
34609                  }
34610                }
34611              }
34612            },
34613            "isDeprecated": false,
34614            "deprecationReason": null
34615          },
34616          {
34617            "name": "accounts",
34618            "description": null,
34619            "args": [],
34620            "type": {
34621              "kind": "NON_NULL",
34622              "name": null,
34623              "ofType": {
34624                "kind": "LIST",
34625                "name": null,
34626                "ofType": {
34627                  "kind": "NON_NULL",
34628                  "name": null,
34629                  "ofType": {
34630                    "kind": "OBJECT",
34631                    "name": "Account",
34632                    "ofType": null
34633                  }
34634                }
34635              }
34636            },
34637            "isDeprecated": false,
34638            "deprecationReason": null
34639          },
34640          {
34641            "name": "activityTimelineProjectActivities",
34642            "description": "Coalesced project activity for all apps belonging to all accounts this user belongs to. Only resolves for the viewer.",
34643            "args": [
34644              {
34645                "name": "createdBefore",
34646                "description": " Offset the query ",
34647                "type": {
34648                  "kind": "SCALAR",
34649                  "name": "DateTime",
34650                  "ofType": null
34651                },
34652                "defaultValue": null,
34653                "isDeprecated": false,
34654                "deprecationReason": null
34655              },
34656              {
34657                "name": "filterTypes",
34658                "description": " Types of objects to filter ",
34659                "type": {
34660                  "kind": "LIST",
34661                  "name": null,
34662                  "ofType": {
34663                    "kind": "NON_NULL",
34664                    "name": null,
34665                    "ofType": {
34666                      "kind": "ENUM",
34667                      "name": "ActivityTimelineProjectActivityType",
34668                      "ofType": null
34669                    }
34670                  }
34671                },
34672                "defaultValue": null,
34673                "isDeprecated": false,
34674                "deprecationReason": null
34675              },
34676              {
34677                "name": "limit",
34678                "description": null,
34679                "type": {
34680                  "kind": "NON_NULL",
34681                  "name": null,
34682                  "ofType": {
34683                    "kind": "SCALAR",
34684                    "name": "Int",
34685                    "ofType": null
34686                  }
34687                },
34688                "defaultValue": null,
34689                "isDeprecated": false,
34690                "deprecationReason": null
34691              }
34692            ],
34693            "type": {
34694              "kind": "NON_NULL",
34695              "name": null,
34696              "ofType": {
34697                "kind": "LIST",
34698                "name": null,
34699                "ofType": {
34700                  "kind": "NON_NULL",
34701                  "name": null,
34702                  "ofType": {
34703                    "kind": "INTERFACE",
34704                    "name": "ActivityTimelineProjectActivity",
34705                    "ofType": null
34706                  }
34707                }
34708              }
34709            },
34710            "isDeprecated": false,
34711            "deprecationReason": null
34712          },
34713          {
34714            "name": "appCount",
34715            "description": null,
34716            "args": [],
34717            "type": {
34718              "kind": "NON_NULL",
34719              "name": null,
34720              "ofType": {
34721                "kind": "SCALAR",
34722                "name": "Int",
34723                "ofType": null
34724              }
34725            },
34726            "isDeprecated": false,
34727            "deprecationReason": null
34728          },
34729          {
34730            "name": "appetizeCode",
34731            "description": null,
34732            "args": [],
34733            "type": {
34734              "kind": "SCALAR",
34735              "name": "String",
34736              "ofType": null
34737            },
34738            "isDeprecated": true,
34739            "deprecationReason": "No longer supported"
34740          },
34741          {
34742            "name": "apps",
34743            "description": "Apps this user has published",
34744            "args": [
34745              {
34746                "name": "includeUnpublished",
34747                "description": null,
34748                "type": {
34749                  "kind": "SCALAR",
34750                  "name": "Boolean",
34751                  "ofType": null
34752                },
34753                "defaultValue": null,
34754                "isDeprecated": false,
34755                "deprecationReason": null
34756              },
34757              {
34758                "name": "limit",
34759                "description": null,
34760                "type": {
34761                  "kind": "NON_NULL",
34762                  "name": null,
34763                  "ofType": {
34764                    "kind": "SCALAR",
34765                    "name": "Int",
34766                    "ofType": null
34767                  }
34768                },
34769                "defaultValue": null,
34770                "isDeprecated": false,
34771                "deprecationReason": null
34772              },
34773              {
34774                "name": "offset",
34775                "description": null,
34776                "type": {
34777                  "kind": "NON_NULL",
34778                  "name": null,
34779                  "ofType": {
34780                    "kind": "SCALAR",
34781                    "name": "Int",
34782                    "ofType": null
34783                  }
34784                },
34785                "defaultValue": null,
34786                "isDeprecated": false,
34787                "deprecationReason": null
34788              }
34789            ],
34790            "type": {
34791              "kind": "NON_NULL",
34792              "name": null,
34793              "ofType": {
34794                "kind": "LIST",
34795                "name": null,
34796                "ofType": {
34797                  "kind": "NON_NULL",
34798                  "name": null,
34799                  "ofType": {
34800                    "kind": "OBJECT",
34801                    "name": "App",
34802                    "ofType": null
34803                  }
34804                }
34805              }
34806            },
34807            "isDeprecated": false,
34808            "deprecationReason": null
34809          },
34810          {
34811            "name": "bestContactEmail",
34812            "description": null,
34813            "args": [],
34814            "type": {
34815              "kind": "SCALAR",
34816              "name": "String",
34817              "ofType": null
34818            },
34819            "isDeprecated": false,
34820            "deprecationReason": null
34821          },
34822          {
34823            "name": "created",
34824            "description": null,
34825            "args": [],
34826            "type": {
34827              "kind": "NON_NULL",
34828              "name": null,
34829              "ofType": {
34830                "kind": "SCALAR",
34831                "name": "DateTime",
34832                "ofType": null
34833              }
34834            },
34835            "isDeprecated": false,
34836            "deprecationReason": null
34837          },
34838          {
34839            "name": "discordUser",
34840            "description": "Discord account linked to a user",
34841            "args": [],
34842            "type": {
34843              "kind": "OBJECT",
34844              "name": "DiscordUser",
34845              "ofType": null
34846            },
34847            "isDeprecated": false,
34848            "deprecationReason": null
34849          },
34850          {
34851            "name": "displayName",
34852            "description": null,
34853            "args": [],
34854            "type": {
34855              "kind": "NON_NULL",
34856              "name": null,
34857              "ofType": {
34858                "kind": "SCALAR",
34859                "name": "String",
34860                "ofType": null
34861              }
34862            },
34863            "isDeprecated": false,
34864            "deprecationReason": null
34865          },
34866          {
34867            "name": "email",
34868            "description": null,
34869            "args": [],
34870            "type": {
34871              "kind": "SCALAR",
34872              "name": "String",
34873              "ofType": null
34874            },
34875            "isDeprecated": false,
34876            "deprecationReason": null
34877          },
34878          {
34879            "name": "emailVerified",
34880            "description": null,
34881            "args": [],
34882            "type": {
34883              "kind": "NON_NULL",
34884              "name": null,
34885              "ofType": {
34886                "kind": "SCALAR",
34887                "name": "Boolean",
34888                "ofType": null
34889              }
34890            },
34891            "isDeprecated": false,
34892            "deprecationReason": null
34893          },
34894          {
34895            "name": "featureGates",
34896            "description": "Server feature gate values for this actor, optionally filtering by desired gates.\nOnly resolves for the viewer.",
34897            "args": [
34898              {
34899                "name": "filter",
34900                "description": null,
34901                "type": {
34902                  "kind": "LIST",
34903                  "name": null,
34904                  "ofType": {
34905                    "kind": "NON_NULL",
34906                    "name": null,
34907                    "ofType": {
34908                      "kind": "SCALAR",
34909                      "name": "String",
34910                      "ofType": null
34911                    }
34912                  }
34913                },
34914                "defaultValue": null,
34915                "isDeprecated": false,
34916                "deprecationReason": null
34917              }
34918            ],
34919            "type": {
34920              "kind": "NON_NULL",
34921              "name": null,
34922              "ofType": {
34923                "kind": "SCALAR",
34924                "name": "JSONObject",
34925                "ofType": null
34926              }
34927            },
34928            "isDeprecated": false,
34929            "deprecationReason": null
34930          },
34931          {
34932            "name": "firstName",
34933            "description": null,
34934            "args": [],
34935            "type": {
34936              "kind": "SCALAR",
34937              "name": "String",
34938              "ofType": null
34939            },
34940            "isDeprecated": false,
34941            "deprecationReason": null
34942          },
34943          {
34944            "name": "fullName",
34945            "description": null,
34946            "args": [],
34947            "type": {
34948              "kind": "SCALAR",
34949              "name": "String",
34950              "ofType": null
34951            },
34952            "isDeprecated": false,
34953            "deprecationReason": null
34954          },
34955          {
34956            "name": "githubUser",
34957            "description": "GitHub account linked to a user",
34958            "args": [],
34959            "type": {
34960              "kind": "OBJECT",
34961              "name": "GitHubUser",
34962              "ofType": null
34963            },
34964            "isDeprecated": false,
34965            "deprecationReason": null
34966          },
34967          {
34968            "name": "githubUsername",
34969            "description": null,
34970            "args": [],
34971            "type": {
34972              "kind": "SCALAR",
34973              "name": "String",
34974              "ofType": null
34975            },
34976            "isDeprecated": true,
34977            "deprecationReason": "No longer supported"
34978          },
34979          {
34980            "name": "hasPendingUserInvitations",
34981            "description": "Whether this user has any pending user invitations. Only resolves for the viewer.",
34982            "args": [],
34983            "type": {
34984              "kind": "NON_NULL",
34985              "name": null,
34986              "ofType": {
34987                "kind": "SCALAR",
34988                "name": "Boolean",
34989                "ofType": null
34990              }
34991            },
34992            "isDeprecated": false,
34993            "deprecationReason": null
34994          },
34995          {
34996            "name": "id",
34997            "description": null,
34998            "args": [],
34999            "type": {
35000              "kind": "NON_NULL",
35001              "name": null,
35002              "ofType": {
35003                "kind": "SCALAR",
35004                "name": "ID",
35005                "ofType": null
35006              }
35007            },
35008            "isDeprecated": false,
35009            "deprecationReason": null
35010          },
35011          {
35012            "name": "industry",
35013            "description": null,
35014            "args": [],
35015            "type": {
35016              "kind": "SCALAR",
35017              "name": "String",
35018              "ofType": null
35019            },
35020            "isDeprecated": true,
35021            "deprecationReason": "No longer supported"
35022          },
35023          {
35024            "name": "isExpoAdmin",
35025            "description": null,
35026            "args": [],
35027            "type": {
35028              "kind": "NON_NULL",
35029              "name": null,
35030              "ofType": {
35031                "kind": "SCALAR",
35032                "name": "Boolean",
35033                "ofType": null
35034              }
35035            },
35036            "isDeprecated": false,
35037            "deprecationReason": null
35038          },
35039          {
35040            "name": "isLegacy",
35041            "description": null,
35042            "args": [],
35043            "type": {
35044              "kind": "NON_NULL",
35045              "name": null,
35046              "ofType": {
35047                "kind": "SCALAR",
35048                "name": "Boolean",
35049                "ofType": null
35050              }
35051            },
35052            "isDeprecated": true,
35053            "deprecationReason": "No longer supported"
35054          },
35055          {
35056            "name": "isSecondFactorAuthenticationEnabled",
35057            "description": null,
35058            "args": [],
35059            "type": {
35060              "kind": "NON_NULL",
35061              "name": null,
35062              "ofType": {
35063                "kind": "SCALAR",
35064                "name": "Boolean",
35065                "ofType": null
35066              }
35067            },
35068            "isDeprecated": false,
35069            "deprecationReason": null
35070          },
35071          {
35072            "name": "lastName",
35073            "description": null,
35074            "args": [],
35075            "type": {
35076              "kind": "SCALAR",
35077              "name": "String",
35078              "ofType": null
35079            },
35080            "isDeprecated": false,
35081            "deprecationReason": null
35082          },
35083          {
35084            "name": "location",
35085            "description": null,
35086            "args": [],
35087            "type": {
35088              "kind": "SCALAR",
35089              "name": "String",
35090              "ofType": null
35091            },
35092            "isDeprecated": true,
35093            "deprecationReason": "No longer supported"
35094          },
35095          {
35096            "name": "notificationSubscriptions",
35097            "description": null,
35098            "args": [
35099              {
35100                "name": "filter",
35101                "description": null,
35102                "type": {
35103                  "kind": "INPUT_OBJECT",
35104                  "name": "NotificationSubscriptionFilter",
35105                  "ofType": null
35106                },
35107                "defaultValue": null,
35108                "isDeprecated": false,
35109                "deprecationReason": null
35110              }
35111            ],
35112            "type": {
35113              "kind": "NON_NULL",
35114              "name": null,
35115              "ofType": {
35116                "kind": "LIST",
35117                "name": null,
35118                "ofType": {
35119                  "kind": "NON_NULL",
35120                  "name": null,
35121                  "ofType": {
35122                    "kind": "OBJECT",
35123                    "name": "NotificationSubscription",
35124                    "ofType": null
35125                  }
35126                }
35127              }
35128            },
35129            "isDeprecated": false,
35130            "deprecationReason": null
35131          },
35132          {
35133            "name": "pendingUserInvitations",
35134            "description": "Pending UserInvitations for this user. Only resolves for the viewer.",
35135            "args": [],
35136            "type": {
35137              "kind": "NON_NULL",
35138              "name": null,
35139              "ofType": {
35140                "kind": "LIST",
35141                "name": null,
35142                "ofType": {
35143                  "kind": "NON_NULL",
35144                  "name": null,
35145                  "ofType": {
35146                    "kind": "OBJECT",
35147                    "name": "UserInvitation",
35148                    "ofType": null
35149                  }
35150                }
35151              }
35152            },
35153            "isDeprecated": false,
35154            "deprecationReason": null
35155          },
35156          {
35157            "name": "primaryAccount",
35158            "description": "Associated accounts",
35159            "args": [],
35160            "type": {
35161              "kind": "NON_NULL",
35162              "name": null,
35163              "ofType": {
35164                "kind": "OBJECT",
35165                "name": "Account",
35166                "ofType": null
35167              }
35168            },
35169            "isDeprecated": false,
35170            "deprecationReason": null
35171          },
35172          {
35173            "name": "profilePhoto",
35174            "description": null,
35175            "args": [],
35176            "type": {
35177              "kind": "NON_NULL",
35178              "name": null,
35179              "ofType": {
35180                "kind": "SCALAR",
35181                "name": "String",
35182                "ofType": null
35183              }
35184            },
35185            "isDeprecated": false,
35186            "deprecationReason": null
35187          },
35188          {
35189            "name": "secondFactorDevices",
35190            "description": "Get all certified second factor authentication methods",
35191            "args": [],
35192            "type": {
35193              "kind": "NON_NULL",
35194              "name": null,
35195              "ofType": {
35196                "kind": "LIST",
35197                "name": null,
35198                "ofType": {
35199                  "kind": "NON_NULL",
35200                  "name": null,
35201                  "ofType": {
35202                    "kind": "OBJECT",
35203                    "name": "UserSecondFactorDevice",
35204                    "ofType": null
35205                  }
35206                }
35207              }
35208            },
35209            "isDeprecated": false,
35210            "deprecationReason": null
35211          },
35212          {
35213            "name": "snacks",
35214            "description": "Snacks associated with this account",
35215            "args": [
35216              {
35217                "name": "limit",
35218                "description": null,
35219                "type": {
35220                  "kind": "NON_NULL",
35221                  "name": null,
35222                  "ofType": {
35223                    "kind": "SCALAR",
35224                    "name": "Int",
35225                    "ofType": null
35226                  }
35227                },
35228                "defaultValue": null,
35229                "isDeprecated": false,
35230                "deprecationReason": null
35231              },
35232              {
35233                "name": "offset",
35234                "description": null,
35235                "type": {
35236                  "kind": "NON_NULL",
35237                  "name": null,
35238                  "ofType": {
35239                    "kind": "SCALAR",
35240                    "name": "Int",
35241                    "ofType": null
35242                  }
35243                },
35244                "defaultValue": null,
35245                "isDeprecated": false,
35246                "deprecationReason": null
35247              }
35248            ],
35249            "type": {
35250              "kind": "NON_NULL",
35251              "name": null,
35252              "ofType": {
35253                "kind": "LIST",
35254                "name": null,
35255                "ofType": {
35256                  "kind": "NON_NULL",
35257                  "name": null,
35258                  "ofType": {
35259                    "kind": "OBJECT",
35260                    "name": "Snack",
35261                    "ofType": null
35262                  }
35263                }
35264              }
35265            },
35266            "isDeprecated": false,
35267            "deprecationReason": null
35268          },
35269          {
35270            "name": "twitterUsername",
35271            "description": null,
35272            "args": [],
35273            "type": {
35274              "kind": "SCALAR",
35275              "name": "String",
35276              "ofType": null
35277            },
35278            "isDeprecated": true,
35279            "deprecationReason": "No longer supported"
35280          },
35281          {
35282            "name": "username",
35283            "description": null,
35284            "args": [],
35285            "type": {
35286              "kind": "NON_NULL",
35287              "name": null,
35288              "ofType": {
35289                "kind": "SCALAR",
35290                "name": "String",
35291                "ofType": null
35292              }
35293            },
35294            "isDeprecated": false,
35295            "deprecationReason": null
35296          }
35297        ],
35298        "inputFields": null,
35299        "interfaces": [
35300          {
35301            "kind": "INTERFACE",
35302            "name": "Actor",
35303            "ofType": null
35304          },
35305          {
35306            "kind": "INTERFACE",
35307            "name": "UserActor",
35308            "ofType": null
35309          }
35310        ],
35311        "enumValues": null,
35312        "possibleTypes": null
35313      },
35314      {
35315        "kind": "INTERFACE",
35316        "name": "UserActor",
35317        "description": "A human user (type User or SSOUser) that can login to the Expo website, use Expo services, and be a member of accounts.",
35318        "fields": [
35319          {
35320            "name": "accessTokens",
35321            "description": "Access Tokens belonging to this user actor",
35322            "args": [],
35323            "type": {
35324              "kind": "NON_NULL",
35325              "name": null,
35326              "ofType": {
35327                "kind": "LIST",
35328                "name": null,
35329                "ofType": {
35330                  "kind": "NON_NULL",
35331                  "name": null,
35332                  "ofType": {
35333                    "kind": "OBJECT",
35334                    "name": "AccessToken",
35335                    "ofType": null
35336                  }
35337                }
35338              }
35339            },
35340            "isDeprecated": false,
35341            "deprecationReason": null
35342          },
35343          {
35344            "name": "accounts",
35345            "description": null,
35346            "args": [],
35347            "type": {
35348              "kind": "NON_NULL",
35349              "name": null,
35350              "ofType": {
35351                "kind": "LIST",
35352                "name": null,
35353                "ofType": {
35354                  "kind": "NON_NULL",
35355                  "name": null,
35356                  "ofType": {
35357                    "kind": "OBJECT",
35358                    "name": "Account",
35359                    "ofType": null
35360                  }
35361                }
35362              }
35363            },
35364            "isDeprecated": false,
35365            "deprecationReason": null
35366          },
35367          {
35368            "name": "activityTimelineProjectActivities",
35369            "description": "Coalesced project activity for all apps belonging to all accounts this user actor belongs to.\nOnly resolves for the viewer.",
35370            "args": [
35371              {
35372                "name": "createdBefore",
35373                "description": " Offset the query ",
35374                "type": {
35375                  "kind": "SCALAR",
35376                  "name": "DateTime",
35377                  "ofType": null
35378                },
35379                "defaultValue": null,
35380                "isDeprecated": false,
35381                "deprecationReason": null
35382              },
35383              {
35384                "name": "filterTypes",
35385                "description": " Types of objects to filter ",
35386                "type": {
35387                  "kind": "LIST",
35388                  "name": null,
35389                  "ofType": {
35390                    "kind": "NON_NULL",
35391                    "name": null,
35392                    "ofType": {
35393                      "kind": "ENUM",
35394                      "name": "ActivityTimelineProjectActivityType",
35395                      "ofType": null
35396                    }
35397                  }
35398                },
35399                "defaultValue": null,
35400                "isDeprecated": false,
35401                "deprecationReason": null
35402              },
35403              {
35404                "name": "limit",
35405                "description": null,
35406                "type": {
35407                  "kind": "NON_NULL",
35408                  "name": null,
35409                  "ofType": {
35410                    "kind": "SCALAR",
35411                    "name": "Int",
35412                    "ofType": null
35413                  }
35414                },
35415                "defaultValue": null,
35416                "isDeprecated": false,
35417                "deprecationReason": null
35418              }
35419            ],
35420            "type": {
35421              "kind": "NON_NULL",
35422              "name": null,
35423              "ofType": {
35424                "kind": "LIST",
35425                "name": null,
35426                "ofType": {
35427                  "kind": "NON_NULL",
35428                  "name": null,
35429                  "ofType": {
35430                    "kind": "INTERFACE",
35431                    "name": "ActivityTimelineProjectActivity",
35432                    "ofType": null
35433                  }
35434                }
35435              }
35436            },
35437            "isDeprecated": false,
35438            "deprecationReason": null
35439          },
35440          {
35441            "name": "appCount",
35442            "description": null,
35443            "args": [],
35444            "type": {
35445              "kind": "NON_NULL",
35446              "name": null,
35447              "ofType": {
35448                "kind": "SCALAR",
35449                "name": "Int",
35450                "ofType": null
35451              }
35452            },
35453            "isDeprecated": false,
35454            "deprecationReason": null
35455          },
35456          {
35457            "name": "appetizeCode",
35458            "description": null,
35459            "args": [],
35460            "type": {
35461              "kind": "SCALAR",
35462              "name": "String",
35463              "ofType": null
35464            },
35465            "isDeprecated": true,
35466            "deprecationReason": "No longer supported"
35467          },
35468          {
35469            "name": "apps",
35470            "description": "Apps this user has published",
35471            "args": [
35472              {
35473                "name": "includeUnpublished",
35474                "description": null,
35475                "type": {
35476                  "kind": "SCALAR",
35477                  "name": "Boolean",
35478                  "ofType": null
35479                },
35480                "defaultValue": null,
35481                "isDeprecated": false,
35482                "deprecationReason": null
35483              },
35484              {
35485                "name": "limit",
35486                "description": null,
35487                "type": {
35488                  "kind": "NON_NULL",
35489                  "name": null,
35490                  "ofType": {
35491                    "kind": "SCALAR",
35492                    "name": "Int",
35493                    "ofType": null
35494                  }
35495                },
35496                "defaultValue": null,
35497                "isDeprecated": false,
35498                "deprecationReason": null
35499              },
35500              {
35501                "name": "offset",
35502                "description": null,
35503                "type": {
35504                  "kind": "NON_NULL",
35505                  "name": null,
35506                  "ofType": {
35507                    "kind": "SCALAR",
35508                    "name": "Int",
35509                    "ofType": null
35510                  }
35511                },
35512                "defaultValue": null,
35513                "isDeprecated": false,
35514                "deprecationReason": null
35515              }
35516            ],
35517            "type": {
35518              "kind": "NON_NULL",
35519              "name": null,
35520              "ofType": {
35521                "kind": "LIST",
35522                "name": null,
35523                "ofType": {
35524                  "kind": "NON_NULL",
35525                  "name": null,
35526                  "ofType": {
35527                    "kind": "OBJECT",
35528                    "name": "App",
35529                    "ofType": null
35530                  }
35531                }
35532              }
35533            },
35534            "isDeprecated": false,
35535            "deprecationReason": null
35536          },
35537          {
35538            "name": "bestContactEmail",
35539            "description": null,
35540            "args": [],
35541            "type": {
35542              "kind": "SCALAR",
35543              "name": "String",
35544              "ofType": null
35545            },
35546            "isDeprecated": false,
35547            "deprecationReason": null
35548          },
35549          {
35550            "name": "created",
35551            "description": null,
35552            "args": [],
35553            "type": {
35554              "kind": "NON_NULL",
35555              "name": null,
35556              "ofType": {
35557                "kind": "SCALAR",
35558                "name": "DateTime",
35559                "ofType": null
35560              }
35561            },
35562            "isDeprecated": false,
35563            "deprecationReason": null
35564          },
35565          {
35566            "name": "discordUser",
35567            "description": "Discord account linked to a user",
35568            "args": [],
35569            "type": {
35570              "kind": "OBJECT",
35571              "name": "DiscordUser",
35572              "ofType": null
35573            },
35574            "isDeprecated": false,
35575            "deprecationReason": null
35576          },
35577          {
35578            "name": "displayName",
35579            "description": "Best-effort human readable name for this human 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.",
35580            "args": [],
35581            "type": {
35582              "kind": "NON_NULL",
35583              "name": null,
35584              "ofType": {
35585                "kind": "SCALAR",
35586                "name": "String",
35587                "ofType": null
35588              }
35589            },
35590            "isDeprecated": false,
35591            "deprecationReason": null
35592          },
35593          {
35594            "name": "featureGates",
35595            "description": "Server feature gate values for this user actor, optionally filtering by desired gates.\nOnly resolves for the viewer.",
35596            "args": [
35597              {
35598                "name": "filter",
35599                "description": null,
35600                "type": {
35601                  "kind": "LIST",
35602                  "name": null,
35603                  "ofType": {
35604                    "kind": "NON_NULL",
35605                    "name": null,
35606                    "ofType": {
35607                      "kind": "SCALAR",
35608                      "name": "String",
35609                      "ofType": null
35610                    }
35611                  }
35612                },
35613                "defaultValue": null,
35614                "isDeprecated": false,
35615                "deprecationReason": null
35616              }
35617            ],
35618            "type": {
35619              "kind": "NON_NULL",
35620              "name": null,
35621              "ofType": {
35622                "kind": "SCALAR",
35623                "name": "JSONObject",
35624                "ofType": null
35625              }
35626            },
35627            "isDeprecated": false,
35628            "deprecationReason": null
35629          },
35630          {
35631            "name": "firstName",
35632            "description": null,
35633            "args": [],
35634            "type": {
35635              "kind": "SCALAR",
35636              "name": "String",
35637              "ofType": null
35638            },
35639            "isDeprecated": false,
35640            "deprecationReason": null
35641          },
35642          {
35643            "name": "fullName",
35644            "description": null,
35645            "args": [],
35646            "type": {
35647              "kind": "SCALAR",
35648              "name": "String",
35649              "ofType": null
35650            },
35651            "isDeprecated": false,
35652            "deprecationReason": null
35653          },
35654          {
35655            "name": "githubUser",
35656            "description": "GitHub account linked to a user",
35657            "args": [],
35658            "type": {
35659              "kind": "OBJECT",
35660              "name": "GitHubUser",
35661              "ofType": null
35662            },
35663            "isDeprecated": false,
35664            "deprecationReason": null
35665          },
35666          {
35667            "name": "githubUsername",
35668            "description": null,
35669            "args": [],
35670            "type": {
35671              "kind": "SCALAR",
35672              "name": "String",
35673              "ofType": null
35674            },
35675            "isDeprecated": true,
35676            "deprecationReason": "No longer supported"
35677          },
35678          {
35679            "name": "id",
35680            "description": null,
35681            "args": [],
35682            "type": {
35683              "kind": "NON_NULL",
35684              "name": null,
35685              "ofType": {
35686                "kind": "SCALAR",
35687                "name": "ID",
35688                "ofType": null
35689              }
35690            },
35691            "isDeprecated": false,
35692            "deprecationReason": null
35693          },
35694          {
35695            "name": "industry",
35696            "description": null,
35697            "args": [],
35698            "type": {
35699              "kind": "SCALAR",
35700              "name": "String",
35701              "ofType": null
35702            },
35703            "isDeprecated": true,
35704            "deprecationReason": "No longer supported"
35705          },
35706          {
35707            "name": "isExpoAdmin",
35708            "description": null,
35709            "args": [],
35710            "type": {
35711              "kind": "NON_NULL",
35712              "name": null,
35713              "ofType": {
35714                "kind": "SCALAR",
35715                "name": "Boolean",
35716                "ofType": null
35717              }
35718            },
35719            "isDeprecated": false,
35720            "deprecationReason": null
35721          },
35722          {
35723            "name": "lastName",
35724            "description": null,
35725            "args": [],
35726            "type": {
35727              "kind": "SCALAR",
35728              "name": "String",
35729              "ofType": null
35730            },
35731            "isDeprecated": false,
35732            "deprecationReason": null
35733          },
35734          {
35735            "name": "location",
35736            "description": null,
35737            "args": [],
35738            "type": {
35739              "kind": "SCALAR",
35740              "name": "String",
35741              "ofType": null
35742            },
35743            "isDeprecated": true,
35744            "deprecationReason": "No longer supported"
35745          },
35746          {
35747            "name": "notificationSubscriptions",
35748            "description": null,
35749            "args": [
35750              {
35751                "name": "filter",
35752                "description": null,
35753                "type": {
35754                  "kind": "INPUT_OBJECT",
35755                  "name": "NotificationSubscriptionFilter",
35756                  "ofType": null
35757                },
35758                "defaultValue": null,
35759                "isDeprecated": false,
35760                "deprecationReason": null
35761              }
35762            ],
35763            "type": {
35764              "kind": "NON_NULL",
35765              "name": null,
35766              "ofType": {
35767                "kind": "LIST",
35768                "name": null,
35769                "ofType": {
35770                  "kind": "NON_NULL",
35771                  "name": null,
35772                  "ofType": {
35773                    "kind": "OBJECT",
35774                    "name": "NotificationSubscription",
35775                    "ofType": null
35776                  }
35777                }
35778              }
35779            },
35780            "isDeprecated": false,
35781            "deprecationReason": null
35782          },
35783          {
35784            "name": "primaryAccount",
35785            "description": "Associated accounts",
35786            "args": [],
35787            "type": {
35788              "kind": "NON_NULL",
35789              "name": null,
35790              "ofType": {
35791                "kind": "OBJECT",
35792                "name": "Account",
35793                "ofType": null
35794              }
35795            },
35796            "isDeprecated": false,
35797            "deprecationReason": null
35798          },
35799          {
35800            "name": "profilePhoto",
35801            "description": null,
35802            "args": [],
35803            "type": {
35804              "kind": "NON_NULL",
35805              "name": null,
35806              "ofType": {
35807                "kind": "SCALAR",
35808                "name": "String",
35809                "ofType": null
35810              }
35811            },
35812            "isDeprecated": false,
35813            "deprecationReason": null
35814          },
35815          {
35816            "name": "snacks",
35817            "description": "Snacks associated with this user's personal account",
35818            "args": [
35819              {
35820                "name": "limit",
35821                "description": null,
35822                "type": {
35823                  "kind": "NON_NULL",
35824                  "name": null,
35825                  "ofType": {
35826                    "kind": "SCALAR",
35827                    "name": "Int",
35828                    "ofType": null
35829                  }
35830                },
35831                "defaultValue": null,
35832                "isDeprecated": false,
35833                "deprecationReason": null
35834              },
35835              {
35836                "name": "offset",
35837                "description": null,
35838                "type": {
35839                  "kind": "NON_NULL",
35840                  "name": null,
35841                  "ofType": {
35842                    "kind": "SCALAR",
35843                    "name": "Int",
35844                    "ofType": null
35845                  }
35846                },
35847                "defaultValue": null,
35848                "isDeprecated": false,
35849                "deprecationReason": null
35850              }
35851            ],
35852            "type": {
35853              "kind": "NON_NULL",
35854              "name": null,
35855              "ofType": {
35856                "kind": "LIST",
35857                "name": null,
35858                "ofType": {
35859                  "kind": "NON_NULL",
35860                  "name": null,
35861                  "ofType": {
35862                    "kind": "OBJECT",
35863                    "name": "Snack",
35864                    "ofType": null
35865                  }
35866                }
35867              }
35868            },
35869            "isDeprecated": false,
35870            "deprecationReason": null
35871          },
35872          {
35873            "name": "twitterUsername",
35874            "description": null,
35875            "args": [],
35876            "type": {
35877              "kind": "SCALAR",
35878              "name": "String",
35879              "ofType": null
35880            },
35881            "isDeprecated": true,
35882            "deprecationReason": "No longer supported"
35883          },
35884          {
35885            "name": "username",
35886            "description": null,
35887            "args": [],
35888            "type": {
35889              "kind": "NON_NULL",
35890              "name": null,
35891              "ofType": {
35892                "kind": "SCALAR",
35893                "name": "String",
35894                "ofType": null
35895              }
35896            },
35897            "isDeprecated": false,
35898            "deprecationReason": null
35899          }
35900        ],
35901        "inputFields": null,
35902        "interfaces": [
35903          {
35904            "kind": "INTERFACE",
35905            "name": "Actor",
35906            "ofType": null
35907          }
35908        ],
35909        "enumValues": null,
35910        "possibleTypes": [
35911          {
35912            "kind": "OBJECT",
35913            "name": "SSOUser",
35914            "ofType": null
35915          },
35916          {
35917            "kind": "OBJECT",
35918            "name": "User",
35919            "ofType": null
35920          }
35921        ]
35922      },
35923      {
35924        "kind": "OBJECT",
35925        "name": "UserActorQuery",
35926        "description": null,
35927        "fields": [
35928          {
35929            "name": "byId",
35930            "description": "Query a UserActor by ID",
35931            "args": [
35932              {
35933                "name": "id",
35934                "description": null,
35935                "type": {
35936                  "kind": "NON_NULL",
35937                  "name": null,
35938                  "ofType": {
35939                    "kind": "SCALAR",
35940                    "name": "ID",
35941                    "ofType": null
35942                  }
35943                },
35944                "defaultValue": null,
35945                "isDeprecated": false,
35946                "deprecationReason": null
35947              }
35948            ],
35949            "type": {
35950              "kind": "NON_NULL",
35951              "name": null,
35952              "ofType": {
35953                "kind": "INTERFACE",
35954                "name": "UserActor",
35955                "ofType": null
35956              }
35957            },
35958            "isDeprecated": false,
35959            "deprecationReason": null
35960          },
35961          {
35962            "name": "byUsername",
35963            "description": "Query a UserActor by username",
35964            "args": [
35965              {
35966                "name": "username",
35967                "description": null,
35968                "type": {
35969                  "kind": "NON_NULL",
35970                  "name": null,
35971                  "ofType": {
35972                    "kind": "SCALAR",
35973                    "name": "String",
35974                    "ofType": null
35975                  }
35976                },
35977                "defaultValue": null,
35978                "isDeprecated": false,
35979                "deprecationReason": null
35980              }
35981            ],
35982            "type": {
35983              "kind": "NON_NULL",
35984              "name": null,
35985              "ofType": {
35986                "kind": "INTERFACE",
35987                "name": "UserActor",
35988                "ofType": null
35989              }
35990            },
35991            "isDeprecated": false,
35992            "deprecationReason": null
35993          }
35994        ],
35995        "inputFields": null,
35996        "interfaces": [],
35997        "enumValues": null,
35998        "possibleTypes": null
35999      },
36000      {
36001        "kind": "INPUT_OBJECT",
36002        "name": "UserDataInput",
36003        "description": null,
36004        "fields": null,
36005        "inputFields": [
36006          {
36007            "name": "email",
36008            "description": null,
36009            "type": {
36010              "kind": "SCALAR",
36011              "name": "String",
36012              "ofType": null
36013            },
36014            "defaultValue": null,
36015            "isDeprecated": false,
36016            "deprecationReason": null
36017          },
36018          {
36019            "name": "firstName",
36020            "description": null,
36021            "type": {
36022              "kind": "SCALAR",
36023              "name": "String",
36024              "ofType": null
36025            },
36026            "defaultValue": null,
36027            "isDeprecated": false,
36028            "deprecationReason": null
36029          },
36030          {
36031            "name": "fullName",
36032            "description": null,
36033            "type": {
36034              "kind": "SCALAR",
36035              "name": "String",
36036              "ofType": null
36037            },
36038            "defaultValue": null,
36039            "isDeprecated": false,
36040            "deprecationReason": null
36041          },
36042          {
36043            "name": "id",
36044            "description": null,
36045            "type": {
36046              "kind": "SCALAR",
36047              "name": "ID",
36048              "ofType": null
36049            },
36050            "defaultValue": null,
36051            "isDeprecated": false,
36052            "deprecationReason": null
36053          },
36054          {
36055            "name": "lastName",
36056            "description": null,
36057            "type": {
36058              "kind": "SCALAR",
36059              "name": "String",
36060              "ofType": null
36061            },
36062            "defaultValue": null,
36063            "isDeprecated": false,
36064            "deprecationReason": null
36065          },
36066          {
36067            "name": "profilePhoto",
36068            "description": null,
36069            "type": {
36070              "kind": "SCALAR",
36071              "name": "String",
36072              "ofType": null
36073            },
36074            "defaultValue": null,
36075            "isDeprecated": false,
36076            "deprecationReason": null
36077          },
36078          {
36079            "name": "username",
36080            "description": null,
36081            "type": {
36082              "kind": "SCALAR",
36083              "name": "String",
36084              "ofType": null
36085            },
36086            "defaultValue": null,
36087            "isDeprecated": false,
36088            "deprecationReason": null
36089          }
36090        ],
36091        "interfaces": null,
36092        "enumValues": null,
36093        "possibleTypes": null
36094      },
36095      {
36096        "kind": "OBJECT",
36097        "name": "UserInvitation",
36098        "description": "An pending invitation sent to an email granting membership on an Account.",
36099        "fields": [
36100          {
36101            "name": "accountName",
36102            "description": null,
36103            "args": [],
36104            "type": {
36105              "kind": "NON_NULL",
36106              "name": null,
36107              "ofType": {
36108                "kind": "SCALAR",
36109                "name": "String",
36110                "ofType": null
36111              }
36112            },
36113            "isDeprecated": false,
36114            "deprecationReason": null
36115          },
36116          {
36117            "name": "accountProfilePhoto",
36118            "description": "If the invite is for a personal team, the profile photo of account owner",
36119            "args": [],
36120            "type": {
36121              "kind": "SCALAR",
36122              "name": "String",
36123              "ofType": null
36124            },
36125            "isDeprecated": false,
36126            "deprecationReason": null
36127          },
36128          {
36129            "name": "created",
36130            "description": null,
36131            "args": [],
36132            "type": {
36133              "kind": "NON_NULL",
36134              "name": null,
36135              "ofType": {
36136                "kind": "SCALAR",
36137                "name": "DateTime",
36138                "ofType": null
36139              }
36140            },
36141            "isDeprecated": false,
36142            "deprecationReason": null
36143          },
36144          {
36145            "name": "email",
36146            "description": "Email to which this invitation was sent",
36147            "args": [],
36148            "type": {
36149              "kind": "NON_NULL",
36150              "name": null,
36151              "ofType": {
36152                "kind": "SCALAR",
36153                "name": "String",
36154                "ofType": null
36155              }
36156            },
36157            "isDeprecated": false,
36158            "deprecationReason": null
36159          },
36160          {
36161            "name": "expires",
36162            "description": null,
36163            "args": [],
36164            "type": {
36165              "kind": "NON_NULL",
36166              "name": null,
36167              "ofType": {
36168                "kind": "SCALAR",
36169                "name": "DateTime",
36170                "ofType": null
36171              }
36172            },
36173            "isDeprecated": false,
36174            "deprecationReason": null
36175          },
36176          {
36177            "name": "id",
36178            "description": null,
36179            "args": [],
36180            "type": {
36181              "kind": "NON_NULL",
36182              "name": null,
36183              "ofType": {
36184                "kind": "SCALAR",
36185                "name": "ID",
36186                "ofType": null
36187              }
36188            },
36189            "isDeprecated": false,
36190            "deprecationReason": null
36191          },
36192          {
36193            "name": "isForOrganization",
36194            "description": "If the invite is for an organization or a personal team",
36195            "args": [],
36196            "type": {
36197              "kind": "NON_NULL",
36198              "name": null,
36199              "ofType": {
36200                "kind": "SCALAR",
36201                "name": "Boolean",
36202                "ofType": null
36203              }
36204            },
36205            "isDeprecated": false,
36206            "deprecationReason": null
36207          },
36208          {
36209            "name": "permissions",
36210            "description": "Account permissions to be granted upon acceptance of this invitation",
36211            "args": [],
36212            "type": {
36213              "kind": "NON_NULL",
36214              "name": null,
36215              "ofType": {
36216                "kind": "LIST",
36217                "name": null,
36218                "ofType": {
36219                  "kind": "NON_NULL",
36220                  "name": null,
36221                  "ofType": {
36222                    "kind": "ENUM",
36223                    "name": "Permission",
36224                    "ofType": null
36225                  }
36226                }
36227              }
36228            },
36229            "isDeprecated": false,
36230            "deprecationReason": null
36231          },
36232          {
36233            "name": "role",
36234            "description": "Role to be granted upon acceptance of this invitation",
36235            "args": [],
36236            "type": {
36237              "kind": "NON_NULL",
36238              "name": null,
36239              "ofType": {
36240                "kind": "ENUM",
36241                "name": "Role",
36242                "ofType": null
36243              }
36244            },
36245            "isDeprecated": false,
36246            "deprecationReason": null
36247          }
36248        ],
36249        "inputFields": null,
36250        "interfaces": [],
36251        "enumValues": null,
36252        "possibleTypes": null
36253      },
36254      {
36255        "kind": "OBJECT",
36256        "name": "UserInvitationMutation",
36257        "description": null,
36258        "fields": [
36259          {
36260            "name": "acceptUserInvitationAsViewer",
36261            "description": "Accept UserInvitation by ID. Viewer must have matching email and email must be verified.",
36262            "args": [
36263              {
36264                "name": "id",
36265                "description": null,
36266                "type": {
36267                  "kind": "NON_NULL",
36268                  "name": null,
36269                  "ofType": {
36270                    "kind": "SCALAR",
36271                    "name": "ID",
36272                    "ofType": null
36273                  }
36274                },
36275                "defaultValue": null,
36276                "isDeprecated": false,
36277                "deprecationReason": null
36278              }
36279            ],
36280            "type": {
36281              "kind": "NON_NULL",
36282              "name": null,
36283              "ofType": {
36284                "kind": "OBJECT",
36285                "name": "AcceptUserInvitationResult",
36286                "ofType": null
36287              }
36288            },
36289            "isDeprecated": false,
36290            "deprecationReason": null
36291          },
36292          {
36293            "name": "acceptUserInvitationByTokenAsViewer",
36294            "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.",
36295            "args": [
36296              {
36297                "name": "token",
36298                "description": null,
36299                "type": {
36300                  "kind": "NON_NULL",
36301                  "name": null,
36302                  "ofType": {
36303                    "kind": "SCALAR",
36304                    "name": "ID",
36305                    "ofType": null
36306                  }
36307                },
36308                "defaultValue": null,
36309                "isDeprecated": false,
36310                "deprecationReason": null
36311              }
36312            ],
36313            "type": {
36314              "kind": "NON_NULL",
36315              "name": null,
36316              "ofType": {
36317                "kind": "OBJECT",
36318                "name": "AcceptUserInvitationResult",
36319                "ofType": null
36320              }
36321            },
36322            "isDeprecated": false,
36323            "deprecationReason": null
36324          },
36325          {
36326            "name": "createUserInvitationForAccount",
36327            "description": "Create a UserInvitation for an email that when accepted grants\nthe specified permissions on an Account",
36328            "args": [
36329              {
36330                "name": "accountID",
36331                "description": null,
36332                "type": {
36333                  "kind": "NON_NULL",
36334                  "name": null,
36335                  "ofType": {
36336                    "kind": "SCALAR",
36337                    "name": "ID",
36338                    "ofType": null
36339                  }
36340                },
36341                "defaultValue": null,
36342                "isDeprecated": false,
36343                "deprecationReason": null
36344              },
36345              {
36346                "name": "email",
36347                "description": null,
36348                "type": {
36349                  "kind": "NON_NULL",
36350                  "name": null,
36351                  "ofType": {
36352                    "kind": "SCALAR",
36353                    "name": "String",
36354                    "ofType": null
36355                  }
36356                },
36357                "defaultValue": null,
36358                "isDeprecated": false,
36359                "deprecationReason": null
36360              },
36361              {
36362                "name": "permissions",
36363                "description": null,
36364                "type": {
36365                  "kind": "NON_NULL",
36366                  "name": null,
36367                  "ofType": {
36368                    "kind": "LIST",
36369                    "name": null,
36370                    "ofType": {
36371                      "kind": "ENUM",
36372                      "name": "Permission",
36373                      "ofType": null
36374                    }
36375                  }
36376                },
36377                "defaultValue": null,
36378                "isDeprecated": false,
36379                "deprecationReason": null
36380              }
36381            ],
36382            "type": {
36383              "kind": "NON_NULL",
36384              "name": null,
36385              "ofType": {
36386                "kind": "OBJECT",
36387                "name": "UserInvitation",
36388                "ofType": null
36389              }
36390            },
36391            "isDeprecated": false,
36392            "deprecationReason": null
36393          },
36394          {
36395            "name": "deleteUserInvitation",
36396            "description": "Rescind UserInvitation by ID",
36397            "args": [
36398              {
36399                "name": "id",
36400                "description": null,
36401                "type": {
36402                  "kind": "NON_NULL",
36403                  "name": null,
36404                  "ofType": {
36405                    "kind": "SCALAR",
36406                    "name": "ID",
36407                    "ofType": null
36408                  }
36409                },
36410                "defaultValue": null,
36411                "isDeprecated": false,
36412                "deprecationReason": null
36413              }
36414            ],
36415            "type": {
36416              "kind": "NON_NULL",
36417              "name": null,
36418              "ofType": {
36419                "kind": "OBJECT",
36420                "name": "RescindUserInvitationResult",
36421                "ofType": null
36422              }
36423            },
36424            "isDeprecated": false,
36425            "deprecationReason": null
36426          },
36427          {
36428            "name": "deleteUserInvitationByToken",
36429            "description": "Delete UserInvitation by token. Note that the viewer's email is not required to match\nthe email on the invitation.",
36430            "args": [
36431              {
36432                "name": "token",
36433                "description": null,
36434                "type": {
36435                  "kind": "NON_NULL",
36436                  "name": null,
36437                  "ofType": {
36438                    "kind": "SCALAR",
36439                    "name": "ID",
36440                    "ofType": null
36441                  }
36442                },
36443                "defaultValue": null,
36444                "isDeprecated": false,
36445                "deprecationReason": null
36446              }
36447            ],
36448            "type": {
36449              "kind": "NON_NULL",
36450              "name": null,
36451              "ofType": {
36452                "kind": "OBJECT",
36453                "name": "RescindUserInvitationResult",
36454                "ofType": null
36455              }
36456            },
36457            "isDeprecated": false,
36458            "deprecationReason": null
36459          },
36460          {
36461            "name": "resendUserInvitation",
36462            "description": "Re-send UserInivitation by ID",
36463            "args": [
36464              {
36465                "name": "id",
36466                "description": null,
36467                "type": {
36468                  "kind": "NON_NULL",
36469                  "name": null,
36470                  "ofType": {
36471                    "kind": "SCALAR",
36472                    "name": "ID",
36473                    "ofType": null
36474                  }
36475                },
36476                "defaultValue": null,
36477                "isDeprecated": false,
36478                "deprecationReason": null
36479              }
36480            ],
36481            "type": {
36482              "kind": "NON_NULL",
36483              "name": null,
36484              "ofType": {
36485                "kind": "OBJECT",
36486                "name": "UserInvitation",
36487                "ofType": null
36488              }
36489            },
36490            "isDeprecated": false,
36491            "deprecationReason": null
36492          }
36493        ],
36494        "inputFields": null,
36495        "interfaces": [],
36496        "enumValues": null,
36497        "possibleTypes": null
36498      },
36499      {
36500        "kind": "OBJECT",
36501        "name": "UserInvitationPublicData",
36502        "description": "Publicly visible data for a UserInvitation.",
36503        "fields": [
36504          {
36505            "name": "accountName",
36506            "description": null,
36507            "args": [],
36508            "type": {
36509              "kind": "NON_NULL",
36510              "name": null,
36511              "ofType": {
36512                "kind": "SCALAR",
36513                "name": "String",
36514                "ofType": null
36515              }
36516            },
36517            "isDeprecated": false,
36518            "deprecationReason": null
36519          },
36520          {
36521            "name": "accountProfilePhoto",
36522            "description": null,
36523            "args": [],
36524            "type": {
36525              "kind": "SCALAR",
36526              "name": "String",
36527              "ofType": null
36528            },
36529            "isDeprecated": false,
36530            "deprecationReason": null
36531          },
36532          {
36533            "name": "created",
36534            "description": null,
36535            "args": [],
36536            "type": {
36537              "kind": "NON_NULL",
36538              "name": null,
36539              "ofType": {
36540                "kind": "SCALAR",
36541                "name": "DateTime",
36542                "ofType": null
36543              }
36544            },
36545            "isDeprecated": false,
36546            "deprecationReason": null
36547          },
36548          {
36549            "name": "email",
36550            "description": null,
36551            "args": [],
36552            "type": {
36553              "kind": "NON_NULL",
36554              "name": null,
36555              "ofType": {
36556                "kind": "SCALAR",
36557                "name": "String",
36558                "ofType": null
36559              }
36560            },
36561            "isDeprecated": false,
36562            "deprecationReason": null
36563          },
36564          {
36565            "name": "expires",
36566            "description": null,
36567            "args": [],
36568            "type": {
36569              "kind": "NON_NULL",
36570              "name": null,
36571              "ofType": {
36572                "kind": "SCALAR",
36573                "name": "DateTime",
36574                "ofType": null
36575              }
36576            },
36577            "isDeprecated": false,
36578            "deprecationReason": null
36579          },
36580          {
36581            "name": "id",
36582            "description": "Email to which this invitation was sent",
36583            "args": [],
36584            "type": {
36585              "kind": "NON_NULL",
36586              "name": null,
36587              "ofType": {
36588                "kind": "SCALAR",
36589                "name": "ID",
36590                "ofType": null
36591              }
36592            },
36593            "isDeprecated": false,
36594            "deprecationReason": null
36595          },
36596          {
36597            "name": "isForOrganization",
36598            "description": null,
36599            "args": [],
36600            "type": {
36601              "kind": "NON_NULL",
36602              "name": null,
36603              "ofType": {
36604                "kind": "SCALAR",
36605                "name": "Boolean",
36606                "ofType": null
36607              }
36608            },
36609            "isDeprecated": false,
36610            "deprecationReason": null
36611          }
36612        ],
36613        "inputFields": null,
36614        "interfaces": [],
36615        "enumValues": null,
36616        "possibleTypes": null
36617      },
36618      {
36619        "kind": "OBJECT",
36620        "name": "UserInvitationPublicDataQuery",
36621        "description": null,
36622        "fields": [
36623          {
36624            "name": "byToken",
36625            "description": "Get UserInvitationPublicData by token",
36626            "args": [
36627              {
36628                "name": "token",
36629                "description": null,
36630                "type": {
36631                  "kind": "NON_NULL",
36632                  "name": null,
36633                  "ofType": {
36634                    "kind": "SCALAR",
36635                    "name": "ID",
36636                    "ofType": null
36637                  }
36638                },
36639                "defaultValue": null,
36640                "isDeprecated": false,
36641                "deprecationReason": null
36642              }
36643            ],
36644            "type": {
36645              "kind": "NON_NULL",
36646              "name": null,
36647              "ofType": {
36648                "kind": "OBJECT",
36649                "name": "UserInvitationPublicData",
36650                "ofType": null
36651              }
36652            },
36653            "isDeprecated": false,
36654            "deprecationReason": null
36655          }
36656        ],
36657        "inputFields": null,
36658        "interfaces": [],
36659        "enumValues": null,
36660        "possibleTypes": null
36661      },
36662      {
36663        "kind": "OBJECT",
36664        "name": "UserPermission",
36665        "description": null,
36666        "fields": [
36667          {
36668            "name": "actor",
36669            "description": null,
36670            "args": [],
36671            "type": {
36672              "kind": "NON_NULL",
36673              "name": null,
36674              "ofType": {
36675                "kind": "INTERFACE",
36676                "name": "Actor",
36677                "ofType": null
36678              }
36679            },
36680            "isDeprecated": false,
36681            "deprecationReason": null
36682          },
36683          {
36684            "name": "permissions",
36685            "description": null,
36686            "args": [],
36687            "type": {
36688              "kind": "NON_NULL",
36689              "name": null,
36690              "ofType": {
36691                "kind": "LIST",
36692                "name": null,
36693                "ofType": {
36694                  "kind": "NON_NULL",
36695                  "name": null,
36696                  "ofType": {
36697                    "kind": "ENUM",
36698                    "name": "Permission",
36699                    "ofType": null
36700                  }
36701                }
36702              }
36703            },
36704            "isDeprecated": false,
36705            "deprecationReason": null
36706          },
36707          {
36708            "name": "role",
36709            "description": null,
36710            "args": [],
36711            "type": {
36712              "kind": "NON_NULL",
36713              "name": null,
36714              "ofType": {
36715                "kind": "ENUM",
36716                "name": "Role",
36717                "ofType": null
36718              }
36719            },
36720            "isDeprecated": false,
36721            "deprecationReason": null
36722          },
36723          {
36724            "name": "user",
36725            "description": null,
36726            "args": [],
36727            "type": {
36728              "kind": "OBJECT",
36729              "name": "User",
36730              "ofType": null
36731            },
36732            "isDeprecated": true,
36733            "deprecationReason": "User type is deprecated"
36734          },
36735          {
36736            "name": "userActor",
36737            "description": null,
36738            "args": [],
36739            "type": {
36740              "kind": "INTERFACE",
36741              "name": "UserActor",
36742              "ofType": null
36743            },
36744            "isDeprecated": false,
36745            "deprecationReason": null
36746          }
36747        ],
36748        "inputFields": null,
36749        "interfaces": [],
36750        "enumValues": null,
36751        "possibleTypes": null
36752      },
36753      {
36754        "kind": "OBJECT",
36755        "name": "UserQuery",
36756        "description": null,
36757        "fields": [
36758          {
36759            "name": "byId",
36760            "description": "Query a User by ID",
36761            "args": [
36762              {
36763                "name": "userId",
36764                "description": null,
36765                "type": {
36766                  "kind": "NON_NULL",
36767                  "name": null,
36768                  "ofType": {
36769                    "kind": "SCALAR",
36770                    "name": "ID",
36771                    "ofType": null
36772                  }
36773                },
36774                "defaultValue": null,
36775                "isDeprecated": false,
36776                "deprecationReason": null
36777              }
36778            ],
36779            "type": {
36780              "kind": "NON_NULL",
36781              "name": null,
36782              "ofType": {
36783                "kind": "OBJECT",
36784                "name": "User",
36785                "ofType": null
36786              }
36787            },
36788            "isDeprecated": false,
36789            "deprecationReason": null
36790          },
36791          {
36792            "name": "byUsername",
36793            "description": "Query a User by username",
36794            "args": [
36795              {
36796                "name": "username",
36797                "description": null,
36798                "type": {
36799                  "kind": "NON_NULL",
36800                  "name": null,
36801                  "ofType": {
36802                    "kind": "SCALAR",
36803                    "name": "String",
36804                    "ofType": null
36805                  }
36806                },
36807                "defaultValue": null,
36808                "isDeprecated": false,
36809                "deprecationReason": null
36810              }
36811            ],
36812            "type": {
36813              "kind": "NON_NULL",
36814              "name": null,
36815              "ofType": {
36816                "kind": "OBJECT",
36817                "name": "User",
36818                "ofType": null
36819              }
36820            },
36821            "isDeprecated": false,
36822            "deprecationReason": null
36823          }
36824        ],
36825        "inputFields": null,
36826        "interfaces": [],
36827        "enumValues": null,
36828        "possibleTypes": null
36829      },
36830      {
36831        "kind": "OBJECT",
36832        "name": "UserSecondFactorDevice",
36833        "description": "A second factor device belonging to a User",
36834        "fields": [
36835          {
36836            "name": "createdAt",
36837            "description": null,
36838            "args": [],
36839            "type": {
36840              "kind": "NON_NULL",
36841              "name": null,
36842              "ofType": {
36843                "kind": "SCALAR",
36844                "name": "DateTime",
36845                "ofType": null
36846              }
36847            },
36848            "isDeprecated": false,
36849            "deprecationReason": null
36850          },
36851          {
36852            "name": "id",
36853            "description": null,
36854            "args": [],
36855            "type": {
36856              "kind": "NON_NULL",
36857              "name": null,
36858              "ofType": {
36859                "kind": "SCALAR",
36860                "name": "ID",
36861                "ofType": null
36862              }
36863            },
36864            "isDeprecated": false,
36865            "deprecationReason": null
36866          },
36867          {
36868            "name": "isCertified",
36869            "description": null,
36870            "args": [],
36871            "type": {
36872              "kind": "NON_NULL",
36873              "name": null,
36874              "ofType": {
36875                "kind": "SCALAR",
36876                "name": "Boolean",
36877                "ofType": null
36878              }
36879            },
36880            "isDeprecated": false,
36881            "deprecationReason": null
36882          },
36883          {
36884            "name": "isPrimary",
36885            "description": null,
36886            "args": [],
36887            "type": {
36888              "kind": "NON_NULL",
36889              "name": null,
36890              "ofType": {
36891                "kind": "SCALAR",
36892                "name": "Boolean",
36893                "ofType": null
36894              }
36895            },
36896            "isDeprecated": false,
36897            "deprecationReason": null
36898          },
36899          {
36900            "name": "method",
36901            "description": null,
36902            "args": [],
36903            "type": {
36904              "kind": "NON_NULL",
36905              "name": null,
36906              "ofType": {
36907                "kind": "ENUM",
36908                "name": "SecondFactorMethod",
36909                "ofType": null
36910              }
36911            },
36912            "isDeprecated": false,
36913            "deprecationReason": null
36914          },
36915          {
36916            "name": "name",
36917            "description": null,
36918            "args": [],
36919            "type": {
36920              "kind": "NON_NULL",
36921              "name": null,
36922              "ofType": {
36923                "kind": "SCALAR",
36924                "name": "String",
36925                "ofType": null
36926              }
36927            },
36928            "isDeprecated": false,
36929            "deprecationReason": null
36930          },
36931          {
36932            "name": "smsPhoneNumber",
36933            "description": null,
36934            "args": [],
36935            "type": {
36936              "kind": "SCALAR",
36937              "name": "String",
36938              "ofType": null
36939            },
36940            "isDeprecated": false,
36941            "deprecationReason": null
36942          },
36943          {
36944            "name": "updatedAt",
36945            "description": null,
36946            "args": [],
36947            "type": {
36948              "kind": "NON_NULL",
36949              "name": null,
36950              "ofType": {
36951                "kind": "SCALAR",
36952                "name": "DateTime",
36953                "ofType": null
36954              }
36955            },
36956            "isDeprecated": false,
36957            "deprecationReason": null
36958          },
36959          {
36960            "name": "user",
36961            "description": null,
36962            "args": [],
36963            "type": {
36964              "kind": "NON_NULL",
36965              "name": null,
36966              "ofType": {
36967                "kind": "OBJECT",
36968                "name": "User",
36969                "ofType": null
36970              }
36971            },
36972            "isDeprecated": false,
36973            "deprecationReason": null
36974          }
36975        ],
36976        "inputFields": null,
36977        "interfaces": [],
36978        "enumValues": null,
36979        "possibleTypes": null
36980      },
36981      {
36982        "kind": "OBJECT",
36983        "name": "Webhook",
36984        "description": null,
36985        "fields": [
36986          {
36987            "name": "appId",
36988            "description": null,
36989            "args": [],
36990            "type": {
36991              "kind": "NON_NULL",
36992              "name": null,
36993              "ofType": {
36994                "kind": "SCALAR",
36995                "name": "ID",
36996                "ofType": null
36997              }
36998            },
36999            "isDeprecated": false,
37000            "deprecationReason": null
37001          },
37002          {
37003            "name": "createdAt",
37004            "description": null,
37005            "args": [],
37006            "type": {
37007              "kind": "NON_NULL",
37008              "name": null,
37009              "ofType": {
37010                "kind": "SCALAR",
37011                "name": "DateTime",
37012                "ofType": null
37013              }
37014            },
37015            "isDeprecated": false,
37016            "deprecationReason": null
37017          },
37018          {
37019            "name": "event",
37020            "description": null,
37021            "args": [],
37022            "type": {
37023              "kind": "NON_NULL",
37024              "name": null,
37025              "ofType": {
37026                "kind": "ENUM",
37027                "name": "WebhookType",
37028                "ofType": null
37029              }
37030            },
37031            "isDeprecated": false,
37032            "deprecationReason": null
37033          },
37034          {
37035            "name": "id",
37036            "description": null,
37037            "args": [],
37038            "type": {
37039              "kind": "NON_NULL",
37040              "name": null,
37041              "ofType": {
37042                "kind": "SCALAR",
37043                "name": "ID",
37044                "ofType": null
37045              }
37046            },
37047            "isDeprecated": false,
37048            "deprecationReason": null
37049          },
37050          {
37051            "name": "updatedAt",
37052            "description": null,
37053            "args": [],
37054            "type": {
37055              "kind": "NON_NULL",
37056              "name": null,
37057              "ofType": {
37058                "kind": "SCALAR",
37059                "name": "DateTime",
37060                "ofType": null
37061              }
37062            },
37063            "isDeprecated": false,
37064            "deprecationReason": null
37065          },
37066          {
37067            "name": "url",
37068            "description": null,
37069            "args": [],
37070            "type": {
37071              "kind": "NON_NULL",
37072              "name": null,
37073              "ofType": {
37074                "kind": "SCALAR",
37075                "name": "String",
37076                "ofType": null
37077              }
37078            },
37079            "isDeprecated": false,
37080            "deprecationReason": null
37081          }
37082        ],
37083        "inputFields": null,
37084        "interfaces": [],
37085        "enumValues": null,
37086        "possibleTypes": null
37087      },
37088      {
37089        "kind": "INPUT_OBJECT",
37090        "name": "WebhookFilter",
37091        "description": null,
37092        "fields": null,
37093        "inputFields": [
37094          {
37095            "name": "event",
37096            "description": null,
37097            "type": {
37098              "kind": "ENUM",
37099              "name": "WebhookType",
37100              "ofType": null
37101            },
37102            "defaultValue": null,
37103            "isDeprecated": false,
37104            "deprecationReason": null
37105          }
37106        ],
37107        "interfaces": null,
37108        "enumValues": null,
37109        "possibleTypes": null
37110      },
37111      {
37112        "kind": "INPUT_OBJECT",
37113        "name": "WebhookInput",
37114        "description": null,
37115        "fields": null,
37116        "inputFields": [
37117          {
37118            "name": "event",
37119            "description": null,
37120            "type": {
37121              "kind": "NON_NULL",
37122              "name": null,
37123              "ofType": {
37124                "kind": "ENUM",
37125                "name": "WebhookType",
37126                "ofType": null
37127              }
37128            },
37129            "defaultValue": null,
37130            "isDeprecated": false,
37131            "deprecationReason": null
37132          },
37133          {
37134            "name": "secret",
37135            "description": null,
37136            "type": {
37137              "kind": "NON_NULL",
37138              "name": null,
37139              "ofType": {
37140                "kind": "SCALAR",
37141                "name": "String",
37142                "ofType": null
37143              }
37144            },
37145            "defaultValue": null,
37146            "isDeprecated": false,
37147            "deprecationReason": null
37148          },
37149          {
37150            "name": "url",
37151            "description": null,
37152            "type": {
37153              "kind": "NON_NULL",
37154              "name": null,
37155              "ofType": {
37156                "kind": "SCALAR",
37157                "name": "String",
37158                "ofType": null
37159              }
37160            },
37161            "defaultValue": null,
37162            "isDeprecated": false,
37163            "deprecationReason": null
37164          }
37165        ],
37166        "interfaces": null,
37167        "enumValues": null,
37168        "possibleTypes": null
37169      },
37170      {
37171        "kind": "OBJECT",
37172        "name": "WebhookMutation",
37173        "description": null,
37174        "fields": [
37175          {
37176            "name": "createWebhook",
37177            "description": "Create a Webhook",
37178            "args": [
37179              {
37180                "name": "appId",
37181                "description": null,
37182                "type": {
37183                  "kind": "NON_NULL",
37184                  "name": null,
37185                  "ofType": {
37186                    "kind": "SCALAR",
37187                    "name": "String",
37188                    "ofType": null
37189                  }
37190                },
37191                "defaultValue": null,
37192                "isDeprecated": false,
37193                "deprecationReason": null
37194              },
37195              {
37196                "name": "webhookInput",
37197                "description": null,
37198                "type": {
37199                  "kind": "NON_NULL",
37200                  "name": null,
37201                  "ofType": {
37202                    "kind": "INPUT_OBJECT",
37203                    "name": "WebhookInput",
37204                    "ofType": null
37205                  }
37206                },
37207                "defaultValue": null,
37208                "isDeprecated": false,
37209                "deprecationReason": null
37210              }
37211            ],
37212            "type": {
37213              "kind": "NON_NULL",
37214              "name": null,
37215              "ofType": {
37216                "kind": "OBJECT",
37217                "name": "Webhook",
37218                "ofType": null
37219              }
37220            },
37221            "isDeprecated": false,
37222            "deprecationReason": null
37223          },
37224          {
37225            "name": "deleteWebhook",
37226            "description": "Delete a Webhook",
37227            "args": [
37228              {
37229                "name": "webhookId",
37230                "description": null,
37231                "type": {
37232                  "kind": "NON_NULL",
37233                  "name": null,
37234                  "ofType": {
37235                    "kind": "SCALAR",
37236                    "name": "ID",
37237                    "ofType": null
37238                  }
37239                },
37240                "defaultValue": null,
37241                "isDeprecated": false,
37242                "deprecationReason": null
37243              }
37244            ],
37245            "type": {
37246              "kind": "NON_NULL",
37247              "name": null,
37248              "ofType": {
37249                "kind": "OBJECT",
37250                "name": "DeleteWebhookResult",
37251                "ofType": null
37252              }
37253            },
37254            "isDeprecated": false,
37255            "deprecationReason": null
37256          },
37257          {
37258            "name": "updateWebhook",
37259            "description": "Update a Webhook",
37260            "args": [
37261              {
37262                "name": "webhookId",
37263                "description": null,
37264                "type": {
37265                  "kind": "NON_NULL",
37266                  "name": null,
37267                  "ofType": {
37268                    "kind": "SCALAR",
37269                    "name": "ID",
37270                    "ofType": null
37271                  }
37272                },
37273                "defaultValue": null,
37274                "isDeprecated": false,
37275                "deprecationReason": null
37276              },
37277              {
37278                "name": "webhookInput",
37279                "description": null,
37280                "type": {
37281                  "kind": "NON_NULL",
37282                  "name": null,
37283                  "ofType": {
37284                    "kind": "INPUT_OBJECT",
37285                    "name": "WebhookInput",
37286                    "ofType": null
37287                  }
37288                },
37289                "defaultValue": null,
37290                "isDeprecated": false,
37291                "deprecationReason": null
37292              }
37293            ],
37294            "type": {
37295              "kind": "NON_NULL",
37296              "name": null,
37297              "ofType": {
37298                "kind": "OBJECT",
37299                "name": "Webhook",
37300                "ofType": null
37301              }
37302            },
37303            "isDeprecated": false,
37304            "deprecationReason": null
37305          }
37306        ],
37307        "inputFields": null,
37308        "interfaces": [],
37309        "enumValues": null,
37310        "possibleTypes": null
37311      },
37312      {
37313        "kind": "OBJECT",
37314        "name": "WebhookQuery",
37315        "description": null,
37316        "fields": [
37317          {
37318            "name": "byId",
37319            "description": null,
37320            "args": [
37321              {
37322                "name": "id",
37323                "description": null,
37324                "type": {
37325                  "kind": "NON_NULL",
37326                  "name": null,
37327                  "ofType": {
37328                    "kind": "SCALAR",
37329                    "name": "ID",
37330                    "ofType": null
37331                  }
37332                },
37333                "defaultValue": null,
37334                "isDeprecated": false,
37335                "deprecationReason": null
37336              }
37337            ],
37338            "type": {
37339              "kind": "NON_NULL",
37340              "name": null,
37341              "ofType": {
37342                "kind": "OBJECT",
37343                "name": "Webhook",
37344                "ofType": null
37345              }
37346            },
37347            "isDeprecated": false,
37348            "deprecationReason": null
37349          }
37350        ],
37351        "inputFields": null,
37352        "interfaces": [],
37353        "enumValues": null,
37354        "possibleTypes": null
37355      },
37356      {
37357        "kind": "ENUM",
37358        "name": "WebhookType",
37359        "description": null,
37360        "fields": null,
37361        "inputFields": null,
37362        "interfaces": null,
37363        "enumValues": [
37364          {
37365            "name": "BUILD",
37366            "description": null,
37367            "isDeprecated": false,
37368            "deprecationReason": null
37369          },
37370          {
37371            "name": "SUBMIT",
37372            "description": null,
37373            "isDeprecated": false,
37374            "deprecationReason": null
37375          }
37376        ],
37377        "possibleTypes": null
37378      },
37379      {
37380        "kind": "OBJECT",
37381        "name": "__Directive",
37382        "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.",
37383        "fields": [
37384          {
37385            "name": "name",
37386            "description": null,
37387            "args": [],
37388            "type": {
37389              "kind": "NON_NULL",
37390              "name": null,
37391              "ofType": {
37392                "kind": "SCALAR",
37393                "name": "String",
37394                "ofType": null
37395              }
37396            },
37397            "isDeprecated": false,
37398            "deprecationReason": null
37399          },
37400          {
37401            "name": "description",
37402            "description": null,
37403            "args": [],
37404            "type": {
37405              "kind": "SCALAR",
37406              "name": "String",
37407              "ofType": null
37408            },
37409            "isDeprecated": false,
37410            "deprecationReason": null
37411          },
37412          {
37413            "name": "isRepeatable",
37414            "description": null,
37415            "args": [],
37416            "type": {
37417              "kind": "NON_NULL",
37418              "name": null,
37419              "ofType": {
37420                "kind": "SCALAR",
37421                "name": "Boolean",
37422                "ofType": null
37423              }
37424            },
37425            "isDeprecated": false,
37426            "deprecationReason": null
37427          },
37428          {
37429            "name": "locations",
37430            "description": null,
37431            "args": [],
37432            "type": {
37433              "kind": "NON_NULL",
37434              "name": null,
37435              "ofType": {
37436                "kind": "LIST",
37437                "name": null,
37438                "ofType": {
37439                  "kind": "NON_NULL",
37440                  "name": null,
37441                  "ofType": {
37442                    "kind": "ENUM",
37443                    "name": "__DirectiveLocation",
37444                    "ofType": null
37445                  }
37446                }
37447              }
37448            },
37449            "isDeprecated": false,
37450            "deprecationReason": null
37451          },
37452          {
37453            "name": "args",
37454            "description": null,
37455            "args": [
37456              {
37457                "name": "includeDeprecated",
37458                "description": null,
37459                "type": {
37460                  "kind": "SCALAR",
37461                  "name": "Boolean",
37462                  "ofType": null
37463                },
37464                "defaultValue": "false",
37465                "isDeprecated": false,
37466                "deprecationReason": null
37467              }
37468            ],
37469            "type": {
37470              "kind": "NON_NULL",
37471              "name": null,
37472              "ofType": {
37473                "kind": "LIST",
37474                "name": null,
37475                "ofType": {
37476                  "kind": "NON_NULL",
37477                  "name": null,
37478                  "ofType": {
37479                    "kind": "OBJECT",
37480                    "name": "__InputValue",
37481                    "ofType": null
37482                  }
37483                }
37484              }
37485            },
37486            "isDeprecated": false,
37487            "deprecationReason": null
37488          }
37489        ],
37490        "inputFields": null,
37491        "interfaces": [],
37492        "enumValues": null,
37493        "possibleTypes": null
37494      },
37495      {
37496        "kind": "ENUM",
37497        "name": "__DirectiveLocation",
37498        "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.",
37499        "fields": null,
37500        "inputFields": null,
37501        "interfaces": null,
37502        "enumValues": [
37503          {
37504            "name": "QUERY",
37505            "description": "Location adjacent to a query operation.",
37506            "isDeprecated": false,
37507            "deprecationReason": null
37508          },
37509          {
37510            "name": "MUTATION",
37511            "description": "Location adjacent to a mutation operation.",
37512            "isDeprecated": false,
37513            "deprecationReason": null
37514          },
37515          {
37516            "name": "SUBSCRIPTION",
37517            "description": "Location adjacent to a subscription operation.",
37518            "isDeprecated": false,
37519            "deprecationReason": null
37520          },
37521          {
37522            "name": "FIELD",
37523            "description": "Location adjacent to a field.",
37524            "isDeprecated": false,
37525            "deprecationReason": null
37526          },
37527          {
37528            "name": "FRAGMENT_DEFINITION",
37529            "description": "Location adjacent to a fragment definition.",
37530            "isDeprecated": false,
37531            "deprecationReason": null
37532          },
37533          {
37534            "name": "FRAGMENT_SPREAD",
37535            "description": "Location adjacent to a fragment spread.",
37536            "isDeprecated": false,
37537            "deprecationReason": null
37538          },
37539          {
37540            "name": "INLINE_FRAGMENT",
37541            "description": "Location adjacent to an inline fragment.",
37542            "isDeprecated": false,
37543            "deprecationReason": null
37544          },
37545          {
37546            "name": "VARIABLE_DEFINITION",
37547            "description": "Location adjacent to a variable definition.",
37548            "isDeprecated": false,
37549            "deprecationReason": null
37550          },
37551          {
37552            "name": "SCHEMA",
37553            "description": "Location adjacent to a schema definition.",
37554            "isDeprecated": false,
37555            "deprecationReason": null
37556          },
37557          {
37558            "name": "SCALAR",
37559            "description": "Location adjacent to a scalar definition.",
37560            "isDeprecated": false,
37561            "deprecationReason": null
37562          },
37563          {
37564            "name": "OBJECT",
37565            "description": "Location adjacent to an object type definition.",
37566            "isDeprecated": false,
37567            "deprecationReason": null
37568          },
37569          {
37570            "name": "FIELD_DEFINITION",
37571            "description": "Location adjacent to a field definition.",
37572            "isDeprecated": false,
37573            "deprecationReason": null
37574          },
37575          {
37576            "name": "ARGUMENT_DEFINITION",
37577            "description": "Location adjacent to an argument definition.",
37578            "isDeprecated": false,
37579            "deprecationReason": null
37580          },
37581          {
37582            "name": "INTERFACE",
37583            "description": "Location adjacent to an interface definition.",
37584            "isDeprecated": false,
37585            "deprecationReason": null
37586          },
37587          {
37588            "name": "UNION",
37589            "description": "Location adjacent to a union definition.",
37590            "isDeprecated": false,
37591            "deprecationReason": null
37592          },
37593          {
37594            "name": "ENUM",
37595            "description": "Location adjacent to an enum definition.",
37596            "isDeprecated": false,
37597            "deprecationReason": null
37598          },
37599          {
37600            "name": "ENUM_VALUE",
37601            "description": "Location adjacent to an enum value definition.",
37602            "isDeprecated": false,
37603            "deprecationReason": null
37604          },
37605          {
37606            "name": "INPUT_OBJECT",
37607            "description": "Location adjacent to an input object type definition.",
37608            "isDeprecated": false,
37609            "deprecationReason": null
37610          },
37611          {
37612            "name": "INPUT_FIELD_DEFINITION",
37613            "description": "Location adjacent to an input object field definition.",
37614            "isDeprecated": false,
37615            "deprecationReason": null
37616          }
37617        ],
37618        "possibleTypes": null
37619      },
37620      {
37621        "kind": "OBJECT",
37622        "name": "__EnumValue",
37623        "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.",
37624        "fields": [
37625          {
37626            "name": "name",
37627            "description": null,
37628            "args": [],
37629            "type": {
37630              "kind": "NON_NULL",
37631              "name": null,
37632              "ofType": {
37633                "kind": "SCALAR",
37634                "name": "String",
37635                "ofType": null
37636              }
37637            },
37638            "isDeprecated": false,
37639            "deprecationReason": null
37640          },
37641          {
37642            "name": "description",
37643            "description": null,
37644            "args": [],
37645            "type": {
37646              "kind": "SCALAR",
37647              "name": "String",
37648              "ofType": null
37649            },
37650            "isDeprecated": false,
37651            "deprecationReason": null
37652          },
37653          {
37654            "name": "isDeprecated",
37655            "description": null,
37656            "args": [],
37657            "type": {
37658              "kind": "NON_NULL",
37659              "name": null,
37660              "ofType": {
37661                "kind": "SCALAR",
37662                "name": "Boolean",
37663                "ofType": null
37664              }
37665            },
37666            "isDeprecated": false,
37667            "deprecationReason": null
37668          },
37669          {
37670            "name": "deprecationReason",
37671            "description": null,
37672            "args": [],
37673            "type": {
37674              "kind": "SCALAR",
37675              "name": "String",
37676              "ofType": null
37677            },
37678            "isDeprecated": false,
37679            "deprecationReason": null
37680          }
37681        ],
37682        "inputFields": null,
37683        "interfaces": [],
37684        "enumValues": null,
37685        "possibleTypes": null
37686      },
37687      {
37688        "kind": "OBJECT",
37689        "name": "__Field",
37690        "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.",
37691        "fields": [
37692          {
37693            "name": "name",
37694            "description": null,
37695            "args": [],
37696            "type": {
37697              "kind": "NON_NULL",
37698              "name": null,
37699              "ofType": {
37700                "kind": "SCALAR",
37701                "name": "String",
37702                "ofType": null
37703              }
37704            },
37705            "isDeprecated": false,
37706            "deprecationReason": null
37707          },
37708          {
37709            "name": "description",
37710            "description": null,
37711            "args": [],
37712            "type": {
37713              "kind": "SCALAR",
37714              "name": "String",
37715              "ofType": null
37716            },
37717            "isDeprecated": false,
37718            "deprecationReason": null
37719          },
37720          {
37721            "name": "args",
37722            "description": null,
37723            "args": [
37724              {
37725                "name": "includeDeprecated",
37726                "description": null,
37727                "type": {
37728                  "kind": "SCALAR",
37729                  "name": "Boolean",
37730                  "ofType": null
37731                },
37732                "defaultValue": "false",
37733                "isDeprecated": false,
37734                "deprecationReason": null
37735              }
37736            ],
37737            "type": {
37738              "kind": "NON_NULL",
37739              "name": null,
37740              "ofType": {
37741                "kind": "LIST",
37742                "name": null,
37743                "ofType": {
37744                  "kind": "NON_NULL",
37745                  "name": null,
37746                  "ofType": {
37747                    "kind": "OBJECT",
37748                    "name": "__InputValue",
37749                    "ofType": null
37750                  }
37751                }
37752              }
37753            },
37754            "isDeprecated": false,
37755            "deprecationReason": null
37756          },
37757          {
37758            "name": "type",
37759            "description": null,
37760            "args": [],
37761            "type": {
37762              "kind": "NON_NULL",
37763              "name": null,
37764              "ofType": {
37765                "kind": "OBJECT",
37766                "name": "__Type",
37767                "ofType": null
37768              }
37769            },
37770            "isDeprecated": false,
37771            "deprecationReason": null
37772          },
37773          {
37774            "name": "isDeprecated",
37775            "description": null,
37776            "args": [],
37777            "type": {
37778              "kind": "NON_NULL",
37779              "name": null,
37780              "ofType": {
37781                "kind": "SCALAR",
37782                "name": "Boolean",
37783                "ofType": null
37784              }
37785            },
37786            "isDeprecated": false,
37787            "deprecationReason": null
37788          },
37789          {
37790            "name": "deprecationReason",
37791            "description": null,
37792            "args": [],
37793            "type": {
37794              "kind": "SCALAR",
37795              "name": "String",
37796              "ofType": null
37797            },
37798            "isDeprecated": false,
37799            "deprecationReason": null
37800          }
37801        ],
37802        "inputFields": null,
37803        "interfaces": [],
37804        "enumValues": null,
37805        "possibleTypes": null
37806      },
37807      {
37808        "kind": "OBJECT",
37809        "name": "__InputValue",
37810        "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.",
37811        "fields": [
37812          {
37813            "name": "name",
37814            "description": null,
37815            "args": [],
37816            "type": {
37817              "kind": "NON_NULL",
37818              "name": null,
37819              "ofType": {
37820                "kind": "SCALAR",
37821                "name": "String",
37822                "ofType": null
37823              }
37824            },
37825            "isDeprecated": false,
37826            "deprecationReason": null
37827          },
37828          {
37829            "name": "description",
37830            "description": null,
37831            "args": [],
37832            "type": {
37833              "kind": "SCALAR",
37834              "name": "String",
37835              "ofType": null
37836            },
37837            "isDeprecated": false,
37838            "deprecationReason": null
37839          },
37840          {
37841            "name": "type",
37842            "description": null,
37843            "args": [],
37844            "type": {
37845              "kind": "NON_NULL",
37846              "name": null,
37847              "ofType": {
37848                "kind": "OBJECT",
37849                "name": "__Type",
37850                "ofType": null
37851              }
37852            },
37853            "isDeprecated": false,
37854            "deprecationReason": null
37855          },
37856          {
37857            "name": "defaultValue",
37858            "description": "A GraphQL-formatted string representing the default value for this input value.",
37859            "args": [],
37860            "type": {
37861              "kind": "SCALAR",
37862              "name": "String",
37863              "ofType": null
37864            },
37865            "isDeprecated": false,
37866            "deprecationReason": null
37867          },
37868          {
37869            "name": "isDeprecated",
37870            "description": null,
37871            "args": [],
37872            "type": {
37873              "kind": "NON_NULL",
37874              "name": null,
37875              "ofType": {
37876                "kind": "SCALAR",
37877                "name": "Boolean",
37878                "ofType": null
37879              }
37880            },
37881            "isDeprecated": false,
37882            "deprecationReason": null
37883          },
37884          {
37885            "name": "deprecationReason",
37886            "description": null,
37887            "args": [],
37888            "type": {
37889              "kind": "SCALAR",
37890              "name": "String",
37891              "ofType": null
37892            },
37893            "isDeprecated": false,
37894            "deprecationReason": null
37895          }
37896        ],
37897        "inputFields": null,
37898        "interfaces": [],
37899        "enumValues": null,
37900        "possibleTypes": null
37901      },
37902      {
37903        "kind": "OBJECT",
37904        "name": "__Schema",
37905        "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.",
37906        "fields": [
37907          {
37908            "name": "description",
37909            "description": null,
37910            "args": [],
37911            "type": {
37912              "kind": "SCALAR",
37913              "name": "String",
37914              "ofType": null
37915            },
37916            "isDeprecated": false,
37917            "deprecationReason": null
37918          },
37919          {
37920            "name": "types",
37921            "description": "A list of all types supported by this server.",
37922            "args": [],
37923            "type": {
37924              "kind": "NON_NULL",
37925              "name": null,
37926              "ofType": {
37927                "kind": "LIST",
37928                "name": null,
37929                "ofType": {
37930                  "kind": "NON_NULL",
37931                  "name": null,
37932                  "ofType": {
37933                    "kind": "OBJECT",
37934                    "name": "__Type",
37935                    "ofType": null
37936                  }
37937                }
37938              }
37939            },
37940            "isDeprecated": false,
37941            "deprecationReason": null
37942          },
37943          {
37944            "name": "queryType",
37945            "description": "The type that query operations will be rooted at.",
37946            "args": [],
37947            "type": {
37948              "kind": "NON_NULL",
37949              "name": null,
37950              "ofType": {
37951                "kind": "OBJECT",
37952                "name": "__Type",
37953                "ofType": null
37954              }
37955            },
37956            "isDeprecated": false,
37957            "deprecationReason": null
37958          },
37959          {
37960            "name": "mutationType",
37961            "description": "If this server supports mutation, the type that mutation operations will be rooted at.",
37962            "args": [],
37963            "type": {
37964              "kind": "OBJECT",
37965              "name": "__Type",
37966              "ofType": null
37967            },
37968            "isDeprecated": false,
37969            "deprecationReason": null
37970          },
37971          {
37972            "name": "subscriptionType",
37973            "description": "If this server support subscription, the type that subscription operations will be rooted at.",
37974            "args": [],
37975            "type": {
37976              "kind": "OBJECT",
37977              "name": "__Type",
37978              "ofType": null
37979            },
37980            "isDeprecated": false,
37981            "deprecationReason": null
37982          },
37983          {
37984            "name": "directives",
37985            "description": "A list of all directives supported by this server.",
37986            "args": [],
37987            "type": {
37988              "kind": "NON_NULL",
37989              "name": null,
37990              "ofType": {
37991                "kind": "LIST",
37992                "name": null,
37993                "ofType": {
37994                  "kind": "NON_NULL",
37995                  "name": null,
37996                  "ofType": {
37997                    "kind": "OBJECT",
37998                    "name": "__Directive",
37999                    "ofType": null
38000                  }
38001                }
38002              }
38003            },
38004            "isDeprecated": false,
38005            "deprecationReason": null
38006          }
38007        ],
38008        "inputFields": null,
38009        "interfaces": [],
38010        "enumValues": null,
38011        "possibleTypes": null
38012      },
38013      {
38014        "kind": "OBJECT",
38015        "name": "__Type",
38016        "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.",
38017        "fields": [
38018          {
38019            "name": "kind",
38020            "description": null,
38021            "args": [],
38022            "type": {
38023              "kind": "NON_NULL",
38024              "name": null,
38025              "ofType": {
38026                "kind": "ENUM",
38027                "name": "__TypeKind",
38028                "ofType": null
38029              }
38030            },
38031            "isDeprecated": false,
38032            "deprecationReason": null
38033          },
38034          {
38035            "name": "name",
38036            "description": null,
38037            "args": [],
38038            "type": {
38039              "kind": "SCALAR",
38040              "name": "String",
38041              "ofType": null
38042            },
38043            "isDeprecated": false,
38044            "deprecationReason": null
38045          },
38046          {
38047            "name": "description",
38048            "description": null,
38049            "args": [],
38050            "type": {
38051              "kind": "SCALAR",
38052              "name": "String",
38053              "ofType": null
38054            },
38055            "isDeprecated": false,
38056            "deprecationReason": null
38057          },
38058          {
38059            "name": "specifiedByUrl",
38060            "description": null,
38061            "args": [],
38062            "type": {
38063              "kind": "SCALAR",
38064              "name": "String",
38065              "ofType": null
38066            },
38067            "isDeprecated": false,
38068            "deprecationReason": null
38069          },
38070          {
38071            "name": "fields",
38072            "description": null,
38073            "args": [
38074              {
38075                "name": "includeDeprecated",
38076                "description": null,
38077                "type": {
38078                  "kind": "SCALAR",
38079                  "name": "Boolean",
38080                  "ofType": null
38081                },
38082                "defaultValue": "false",
38083                "isDeprecated": false,
38084                "deprecationReason": null
38085              }
38086            ],
38087            "type": {
38088              "kind": "LIST",
38089              "name": null,
38090              "ofType": {
38091                "kind": "NON_NULL",
38092                "name": null,
38093                "ofType": {
38094                  "kind": "OBJECT",
38095                  "name": "__Field",
38096                  "ofType": null
38097                }
38098              }
38099            },
38100            "isDeprecated": false,
38101            "deprecationReason": null
38102          },
38103          {
38104            "name": "interfaces",
38105            "description": null,
38106            "args": [],
38107            "type": {
38108              "kind": "LIST",
38109              "name": null,
38110              "ofType": {
38111                "kind": "NON_NULL",
38112                "name": null,
38113                "ofType": {
38114                  "kind": "OBJECT",
38115                  "name": "__Type",
38116                  "ofType": null
38117                }
38118              }
38119            },
38120            "isDeprecated": false,
38121            "deprecationReason": null
38122          },
38123          {
38124            "name": "possibleTypes",
38125            "description": null,
38126            "args": [],
38127            "type": {
38128              "kind": "LIST",
38129              "name": null,
38130              "ofType": {
38131                "kind": "NON_NULL",
38132                "name": null,
38133                "ofType": {
38134                  "kind": "OBJECT",
38135                  "name": "__Type",
38136                  "ofType": null
38137                }
38138              }
38139            },
38140            "isDeprecated": false,
38141            "deprecationReason": null
38142          },
38143          {
38144            "name": "enumValues",
38145            "description": null,
38146            "args": [
38147              {
38148                "name": "includeDeprecated",
38149                "description": null,
38150                "type": {
38151                  "kind": "SCALAR",
38152                  "name": "Boolean",
38153                  "ofType": null
38154                },
38155                "defaultValue": "false",
38156                "isDeprecated": false,
38157                "deprecationReason": null
38158              }
38159            ],
38160            "type": {
38161              "kind": "LIST",
38162              "name": null,
38163              "ofType": {
38164                "kind": "NON_NULL",
38165                "name": null,
38166                "ofType": {
38167                  "kind": "OBJECT",
38168                  "name": "__EnumValue",
38169                  "ofType": null
38170                }
38171              }
38172            },
38173            "isDeprecated": false,
38174            "deprecationReason": null
38175          },
38176          {
38177            "name": "inputFields",
38178            "description": null,
38179            "args": [
38180              {
38181                "name": "includeDeprecated",
38182                "description": null,
38183                "type": {
38184                  "kind": "SCALAR",
38185                  "name": "Boolean",
38186                  "ofType": null
38187                },
38188                "defaultValue": "false",
38189                "isDeprecated": false,
38190                "deprecationReason": null
38191              }
38192            ],
38193            "type": {
38194              "kind": "LIST",
38195              "name": null,
38196              "ofType": {
38197                "kind": "NON_NULL",
38198                "name": null,
38199                "ofType": {
38200                  "kind": "OBJECT",
38201                  "name": "__InputValue",
38202                  "ofType": null
38203                }
38204              }
38205            },
38206            "isDeprecated": false,
38207            "deprecationReason": null
38208          },
38209          {
38210            "name": "ofType",
38211            "description": null,
38212            "args": [],
38213            "type": {
38214              "kind": "OBJECT",
38215              "name": "__Type",
38216              "ofType": null
38217            },
38218            "isDeprecated": false,
38219            "deprecationReason": null
38220          }
38221        ],
38222        "inputFields": null,
38223        "interfaces": [],
38224        "enumValues": null,
38225        "possibleTypes": null
38226      },
38227      {
38228        "kind": "ENUM",
38229        "name": "__TypeKind",
38230        "description": "An enum describing what kind of type a given `__Type` is.",
38231        "fields": null,
38232        "inputFields": null,
38233        "interfaces": null,
38234        "enumValues": [
38235          {
38236            "name": "SCALAR",
38237            "description": "Indicates this type is a scalar.",
38238            "isDeprecated": false,
38239            "deprecationReason": null
38240          },
38241          {
38242            "name": "OBJECT",
38243            "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.",
38244            "isDeprecated": false,
38245            "deprecationReason": null
38246          },
38247          {
38248            "name": "INTERFACE",
38249            "description": "Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.",
38250            "isDeprecated": false,
38251            "deprecationReason": null
38252          },
38253          {
38254            "name": "UNION",
38255            "description": "Indicates this type is a union. `possibleTypes` is a valid field.",
38256            "isDeprecated": false,
38257            "deprecationReason": null
38258          },
38259          {
38260            "name": "ENUM",
38261            "description": "Indicates this type is an enum. `enumValues` is a valid field.",
38262            "isDeprecated": false,
38263            "deprecationReason": null
38264          },
38265          {
38266            "name": "INPUT_OBJECT",
38267            "description": "Indicates this type is an input object. `inputFields` is a valid field.",
38268            "isDeprecated": false,
38269            "deprecationReason": null
38270          },
38271          {
38272            "name": "LIST",
38273            "description": "Indicates this type is a list. `ofType` is a valid field.",
38274            "isDeprecated": false,
38275            "deprecationReason": null
38276          },
38277          {
38278            "name": "NON_NULL",
38279            "description": "Indicates this type is a non-null. `ofType` is a valid field.",
38280            "isDeprecated": false,
38281            "deprecationReason": null
38282          }
38283        ],
38284        "possibleTypes": null
38285      },
38286      {
38287        "kind": "OBJECT",
38288        "name": "deleteAndroidAppBuildCredentialsResult",
38289        "description": null,
38290        "fields": [
38291          {
38292            "name": "id",
38293            "description": null,
38294            "args": [],
38295            "type": {
38296              "kind": "NON_NULL",
38297              "name": null,
38298              "ofType": {
38299                "kind": "SCALAR",
38300                "name": "ID",
38301                "ofType": null
38302              }
38303            },
38304            "isDeprecated": false,
38305            "deprecationReason": null
38306          }
38307        ],
38308        "inputFields": null,
38309        "interfaces": [],
38310        "enumValues": null,
38311        "possibleTypes": null
38312      },
38313      {
38314        "kind": "OBJECT",
38315        "name": "deleteAndroidFcmResult",
38316        "description": null,
38317        "fields": [
38318          {
38319            "name": "id",
38320            "description": null,
38321            "args": [],
38322            "type": {
38323              "kind": "NON_NULL",
38324              "name": null,
38325              "ofType": {
38326                "kind": "SCALAR",
38327                "name": "ID",
38328                "ofType": null
38329              }
38330            },
38331            "isDeprecated": false,
38332            "deprecationReason": null
38333          }
38334        ],
38335        "inputFields": null,
38336        "interfaces": [],
38337        "enumValues": null,
38338        "possibleTypes": null
38339      },
38340      {
38341        "kind": "OBJECT",
38342        "name": "deleteAppStoreConnectApiKeyResult",
38343        "description": null,
38344        "fields": [
38345          {
38346            "name": "id",
38347            "description": null,
38348            "args": [],
38349            "type": {
38350              "kind": "NON_NULL",
38351              "name": null,
38352              "ofType": {
38353                "kind": "SCALAR",
38354                "name": "ID",
38355                "ofType": null
38356              }
38357            },
38358            "isDeprecated": false,
38359            "deprecationReason": null
38360          }
38361        ],
38362        "inputFields": null,
38363        "interfaces": [],
38364        "enumValues": null,
38365        "possibleTypes": null
38366      },
38367      {
38368        "kind": "OBJECT",
38369        "name": "deleteApplePushKeyResult",
38370        "description": null,
38371        "fields": [
38372          {
38373            "name": "id",
38374            "description": null,
38375            "args": [],
38376            "type": {
38377              "kind": "NON_NULL",
38378              "name": null,
38379              "ofType": {
38380                "kind": "SCALAR",
38381                "name": "ID",
38382                "ofType": null
38383              }
38384            },
38385            "isDeprecated": false,
38386            "deprecationReason": null
38387          }
38388        ],
38389        "inputFields": null,
38390        "interfaces": [],
38391        "enumValues": null,
38392        "possibleTypes": null
38393      }
38394    ],
38395    "directives": [
38396      {
38397        "name": "deprecated",
38398        "description": "Marks an element of a GraphQL schema as no longer supported.",
38399        "isRepeatable": false,
38400        "locations": [
38401          "ARGUMENT_DEFINITION",
38402          "ENUM_VALUE",
38403          "FIELD_DEFINITION",
38404          "INPUT_FIELD_DEFINITION"
38405        ],
38406        "args": [
38407          {
38408            "name": "reason",
38409            "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/).",
38410            "type": {
38411              "kind": "SCALAR",
38412              "name": "String",
38413              "ofType": null
38414            },
38415            "defaultValue": "\"No longer supported\"",
38416            "isDeprecated": false,
38417            "deprecationReason": null
38418          }
38419        ]
38420      },
38421      {
38422        "name": "include",
38423        "description": "Directs the executor to include this field or fragment only when the `if` argument is true.",
38424        "isRepeatable": false,
38425        "locations": [
38426          "FIELD",
38427          "FRAGMENT_SPREAD",
38428          "INLINE_FRAGMENT"
38429        ],
38430        "args": [
38431          {
38432            "name": "if",
38433            "description": "Included when true.",
38434            "type": {
38435              "kind": "NON_NULL",
38436              "name": null,
38437              "ofType": {
38438                "kind": "SCALAR",
38439                "name": "Boolean",
38440                "ofType": null
38441              }
38442            },
38443            "defaultValue": null,
38444            "isDeprecated": false,
38445            "deprecationReason": null
38446          }
38447        ]
38448      },
38449      {
38450        "name": "skip",
38451        "description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
38452        "isRepeatable": false,
38453        "locations": [
38454          "FIELD",
38455          "FRAGMENT_SPREAD",
38456          "INLINE_FRAGMENT"
38457        ],
38458        "args": [
38459          {
38460            "name": "if",
38461            "description": "Skipped when true.",
38462            "type": {
38463              "kind": "NON_NULL",
38464              "name": null,
38465              "ofType": {
38466                "kind": "SCALAR",
38467                "name": "Boolean",
38468                "ofType": null
38469              }
38470            },
38471            "defaultValue": null,
38472            "isDeprecated": false,
38473            "deprecationReason": null
38474          }
38475        ]
38476      },
38477      {
38478        "name": "specifiedBy",
38479        "description": "Exposes a URL that specifies the behavior of this scalar.",
38480        "isRepeatable": false,
38481        "locations": [
38482          "SCALAR"
38483        ],
38484        "args": [
38485          {
38486            "name": "url",
38487            "description": "The URL that specifies the behavior of this scalar.",
38488            "type": {
38489              "kind": "NON_NULL",
38490              "name": null,
38491              "ofType": {
38492                "kind": "SCALAR",
38493                "name": "String",
38494                "ofType": null
38495              }
38496            },
38497            "defaultValue": null,
38498            "isDeprecated": false,
38499            "deprecationReason": null
38500          }
38501        ]
38502      }
38503    ]
38504  }
38505}